Update resourcepack-dev.yml #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Resource Pack Dev Builds | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build-resources-dev: | |
runs-on: ubuntu-latest | |
env: | |
TU1: 'Re-Console-Legacy-Resources-TU1-0.0.30-latest.zip' | |
TU3: 'Re-Console-Legacy-Resources-TU3-0.0.30-latest.zip' | |
TU5: 'Re-Console-Legacy-Resources-TU5-0.0.30-latest.zip' | |
VERSION: 0.0.30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create short commit SHA | |
id: vars | |
run: | | |
shortSha=$(git rev-parse --short ${{ github.sha }}) | |
echo "COMMIT_SHORT_SHA=$shortSha" >> $GITHUB_ENV | |
- name: Create TU1 Resources | |
run: | | |
mkdir TU1-temp | |
cp -r ./Common/Assets/* ./TU1-temp/ | |
cp -r ./TU1/TU1-Assets/* ./TU1-temp/ | |
cp ./LICENSE ./TU1-temp/ | |
cp ./README.md ./TU1-temp/ | |
- name: Create TU3 Resources | |
run: | | |
mkdir TU3-temp | |
cp -r ./Common/Assets/* ./TU3-temp/ | |
cp -r ./TU3/TU3-Assets/* ./TU3-temp/ | |
cp ./LICENSE ./TU3-temp/ | |
cp ./README.md ./TU3-temp/ | |
- name: Create TU5 Resources | |
run: | | |
mkdir TU5-temp | |
cp -r ./Common/Assets/* ./TU5-temp/ | |
cp -r ./TU5/TU5-Assets/* ./TU5-temp/ | |
cp ./LICENSE ./TU5-temp/ | |
cp ./README.md ./TU5-temp/ | |
- name: Upload TU1 Resources to artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "Re-Console-Legacy-Resources-TU1-dev-${{ env.COMMIT_SHORT_SHA }}" | |
path: TU1-temp | |
- name: Upload TU3 Resources to artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "Re-Console-Legacy-Resources-TU3-dev-${{ env.COMMIT_SHORT_SHA }}" | |
path: TU3-temp | |
- name: Upload TU5 Resources to artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "Re-Console-Legacy-Resources-TU5-dev-${{ env.COMMIT_SHORT_SHA }}" | |
path: TU5-temp | |
- name: Create release & upload | |
if: | | |
github.repository == 'ViolaFlower/RC-L-Resources' && | |
github.event.action != 'pull_request' && | |
github.ref == 'refs/heads/main' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
tar czf $TU1 ./TU1-temp/ | |
tar czf $TU3 ./TU3-temp/ | |
tar czf $TU5 ./TU5-temp/ | |
$tag=${{ env.COMMIT_SHORT_SHA }} | |
$title="${VERSION}-${tag}" | |
gh release create $tag $TU1 $TU3 $TU5 --target $env:GITHUB_SHA -t $title -p | |
# Remove canary_ to prevent conflicts from tag | |
$tag="${VERSION}-latest" | |
gh release delete $tag -y | |
git push --delete origin $tag | |
git tag -d $tag | |
gh release create $tag $TU1 $TU3 $TU5 --target $env:GITHUB_SHA -t $tag |