Merge pull request #26 from QuazChick/blocks-1.21.20 #35
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: 'Package Add-Ons' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Release packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Bedrock Addon Packager | |
uses: Fabrimat/[email protected] | |
- name: Publish release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "*.mcaddon,*.mcpack,*.zip" | |
bodyFile: "release.md" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: "download" | |
name: "Downloads" | |
replacesArtifacts: true | |
allowUpdates: true | |
removeArtifacts: true |