diff options
author | Yasin <a.piri@hotmail.de> | 2023-06-10 22:10:52 +0200 |
---|---|---|
committer | Yasin <a.piri@hotmail.de> | 2023-06-10 22:10:52 +0200 |
commit | 4a69272abbffddc5c03ac35b23971bfff3d4556b (patch) | |
tree | f4f3d618f5b2527de02d538dbad6e9065a07ed9e /.github/workflows/buildrelease.yml | |
parent | 6d9b44a29e8268e155031baa53e06255569c18a3 (diff) | |
download | Skyblocker-4a69272abbffddc5c03ac35b23971bfff3d4556b.tar.gz Skyblocker-4a69272abbffddc5c03ac35b23971bfff3d4556b.tar.bz2 Skyblocker-4a69272abbffddc5c03ac35b23971bfff3d4556b.zip |
FIX Workflow
Diffstat (limited to '.github/workflows/buildrelease.yml')
-rw-r--r-- | .github/workflows/buildrelease.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/buildrelease.yml b/.github/workflows/buildrelease.yml index c9e3584b..4361f363 100644 --- a/.github/workflows/buildrelease.yml +++ b/.github/workflows/buildrelease.yml @@ -53,11 +53,13 @@ jobs: script: | const fs = require("fs") return fs.readdirSync("build/libs/").filter(e => !e.endsWith("dev.jar") && !e.endsWith("sources.jar") && e.endsWith(".jar"))[0] + - name: Release id: uploadrelease uses: softprops/action-gh-release@v1 with: body: ${{ steps.read_changelog.outputs.changelog }} + token: ${{ secrets.GH_RELEASE }} files: build/libs/${{ steps.fname.outputs.result }} - name: Publish to Modrinth |