Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fclante committed Mar 26, 2024
1 parent 54c2113 commit 198a175
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,18 @@ jobs:
id: get_modpack_name
run: echo "name=${{ steps.extract_modpack_name.outputs.value }}" >> $GITHUB_OUTPUT

- name: Strip 'v' from version tag
id: strip_version
run: |
echo "version=$(echo ${{ github.event.release.tag_name }} | sed 's/v//')" >> $GITHUB_OUTPUT
- uses: GreenTF/[email protected]
with:
namespace: Beeheim # the thunderstore 'team' to publish under
description: ${{ github.event.release.body }}
token: ${{ secrets.THUNDERSTORE_TOKEN }}
name: ${{ steps.get_modpack_name.outputs.name }} # the name of the package
version: ${{ github.ref_name }} # Use the tag as the package version
version: ${{ steps.strip_version.outputs.version }}# Use the tag as the package version
community: Valheim # the game the package is for
# repo: valheim.thunderstore.io
file: modpack.zip
Expand Down

0 comments on commit 198a175

Please sign in to comment.