We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2bb744 commit d17a7c7Copy full SHA for d17a7c7
1 file changed
.github/workflows/build.yml
@@ -7,6 +7,9 @@ on:
7
permissions:
8
contents: write
9
10
+env:
11
+ MARKETPLACE_ITEM_ID: 265
12
+
13
jobs:
14
build:
15
runs-on: ubuntu-latest
@@ -58,3 +61,13 @@ jobs:
58
61
tag_name: ${{ steps.version_tag.outputs.version }}
59
62
prerelease: false
60
63
name: "Build Release ${{ steps.version_tag.outputs.version }}"
64
65
+ - name: Upload to LiquidBounce Marketplace
66
+ run: |
67
+ curl -X POST \
68
+ "https://api.liquidbounce.net/api/v3/marketplace/${{ env.MARKETPLACE_ITEM_ID }}/revisions" \
69
+ -H "Authorization: Bearer ${{ secrets.API_TOKEN }}" \
70
+ -F "file=@jellobounce.zip" \
71
+ -F "version=${{ steps.version_tag.outputs.version }}" \
72
+ -F "changelog=Automated build from commit ${{ github.sha }}" \
73
+ --fail-with-body
0 commit comments