Skip to content

Commit 8c47a07

Browse files
authored
Add automatic builds
1 parent 13c2eab commit 8c47a07

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Build the zip files
14+
run: sh package.sh
15+
- uses: marvinpinto/action-automatic-releases@latest
16+
with:
17+
repo_token: ${{ secrets.GITHUB_TOKEN }}
18+
automatic_release_tag: "latest"
19+
prerelease: false
20+
title: "Latest build"
21+
files: |
22+
build/Bedrock-TexturePack.mcpack
23+
build/Java-TexturePack.zip

0 commit comments

Comments
 (0)