aggiunto Nightly Building #2
Workflow file for this run
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: Create Nightly Release Build | |
on: | |
push: | |
paths: | |
- 'datapacks/Skyblock CE datapacks/data/skyblock/function/versions/changelog/building_version.json' | |
jobs: | |
check_changes: | |
runs-on: ubuntu-24.04 | |
outputs: | |
should_build: ${{ steps.check.outputs.changed }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Check if Nightly Release Building changed | |
id: check | |
shell: bash | |
run: | | |
if git diff HEAD^ HEAD -- "datapacks/Skyblock CE datapacks/data/skyblock/function/versions/changelog/building_version.json" | grep -q '"Nightly Building"'; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
else | |
echo "changed=false" >> $GITHUB_OUTPUT | |
fi | |
build: | |
needs: check_changes | |
if: needs.check_changes.outputs.should_build == 'true' | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Upload folder content as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Skyblock_CE_Nightly_Snapshots | |
path: | | |
**/* | |
!.git/** | |
!.github/** | |
!.gitignore | |
!.worlds/** | |
!Resources Pack/** | |
!crowdin.yml | |
!spyglass.json | |
!*.zip | |
!.DS_Store | |
if-no-files-found: error |