Skip to content

High lid coloration #41

High lid coloration

High lid coloration #41

name: Create High 7.2 Release
on:
push:
branches:
- 7.2-Pre-1-High
jobs:
build:
runs-on: ubuntu-latest
env:
RELEASE_VERSION: ${{ github.run_number }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Exclude unwanted files
run: |
find . -name '.github' -type d -exec rm -rf {} +
find . -name '.git' -type d -exec rm -rf {} +
rm -f README.md
- name: Zip files
uses: montudor/action-zip@v1
with:
args: zip -qq -r Dokucraft-TSC-High_BTA-7.2.zip .
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
with:
tag: "v${{ github.ref_name }}${{ github.run_number }}"
name: "Dokucraft TSC BTA 7.2 High"
body: "Usage: Download the .zip under assets, place in the texturepacks folder. Update ${{ env.RELEASE_VERSION }}"
draft: false
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: Dokucraft-TSC-High_BTA-7.2.zip