Skip to content

Commit 2737471

Browse files
Experimenting with GitHub Actions
Added auto-package.yml which should auto package the resource pack.
1 parent d0fac89 commit 2737471

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/auto-package.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Package Resource Pack
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
zip-files:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: vimtor/action-zip@v1
13+
with:
14+
files: assets/ pack.png pack.mcmeta
15+
dest: Bucket Mobs Resource Pack v${{ github.run_id }}.zip

0 commit comments

Comments
 (0)