Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
push:
tags:
- 'v*.*.*'

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4

- name: Create zip
run: zip -r BoxedDataPack.zip BoxedDataPack/

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: BoxedDataPack.zip
generate_release_notes: true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ crashlytics-build.properties
fabric.properties
.idea/httpRequests
.idea/caches/build_file_checksums.ser
/.project
*.zip
Binary file removed BoxedDataPack.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BoxedDataPack
Advancement Datapack for Boxed Addon

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