chore: (deps): bump actions/upload-artifact from 3 to 4 #2
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: Run tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
paths: | |
- data/** | |
jobs: | |
build-main: | |
runs-on: ubuntu-latest | |
steps: | |
# Clones repository so it has access to the files | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Determine the pull-request id | |
id: pr | |
run: echo "::set-output name=pr_number::$(gh pr view --json number -q .number || echo "")" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Checks mcfunction files for errors | |
- name: Check commands | |
uses: mcbeet/check-commands@v1 | |
with: | |
source: . | |
minecraft: 1.19 | |
# Checks JSON for errors | |
- name: Check JSON | |
uses: ocular-d/[email protected] | |
# Uploads an artifact that you can download and use in your Minecraft world | |
- name: Compile and upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bmc3-mining-dimension-pr${{steps.pr.outputs.pr_number}} | |
path: | | |
data/ | |
pack.mcmeta | |
pack.png | |
# Errors if files aren't found | |
if-no-files-found: error |