Skip to content

Commit

Permalink
Experimenting with GitHub Actions
Browse files Browse the repository at this point in the history
Added auto-package.yml which should auto package the resource pack.
  • Loading branch information
Peashooter101 authored Aug 9, 2023
1 parent d0fac89 commit 2737471
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/auto-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Package Resource Pack

on:
release:
types: [published]

jobs:
zip-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: vimtor/action-zip@v1
with:
files: assets/ pack.png pack.mcmeta
dest: Bucket Mobs Resource Pack v${{ github.run_id }}.zip

0 comments on commit 2737471

Please sign in to comment.