Skip to content

Commit 155d16a

Browse files
authored
Merge pull request #3 from BentoBoxWorld/update/mc-1.21.5
Update data pack to Minecraft 1.21.5 and add automated release workflow
2 parents 2798a41 + 168edce commit 155d16a

4 files changed

Lines changed: 26 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*'
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Create zip
17+
run: zip -r BoxedDataPack.zip BoxedDataPack/
18+
19+
- name: Create GitHub Release
20+
uses: softprops/action-gh-release@v2
21+
with:
22+
files: BoxedDataPack.zip
23+
generate_release_notes: true

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,5 @@ crashlytics-build.properties
3636
fabric.properties
3737
.idea/httpRequests
3838
.idea/caches/build_file_checksums.ser
39+
/.project
40+
*.zip

BoxedDataPack.zip

-398 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# BoxedDataPack
22
Advancement Datapack for Boxed Addon
33

4-
The datapack is the zip file in this repo and should be placed with other datapacks in the main world folder.
4+
Download the latest `BoxedDataPack.zip` from the [Releases page](../../releases/latest) and place it in your world's `datapacks/` folder.

0 commit comments

Comments
 (0)