-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,16 +18,22 @@ jobs: | |
files: vanilla-plus/ | ||
dest: modpack.zip | ||
|
||
- name: Get modpack name | ||
- name: Extract version from package.json | ||
uses: sergeysova/jq-action@v2 | ||
id: extract_modpack_name | ||
with: | ||
cmd: 'jq .name vanilla-plus/base-pack/manifest.json -r' | ||
|
||
- name: Save modpack name in github output | ||
id: get_modpack_name | ||
run: scripts/extract_modpack_name.sh | ||
run: echo "name=${{ steps.extract_modpack_name.outputs.value }}" >> $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 | ||
name: ${{ steps.get_modpack_name.outputs.name }} # the name of the package | ||
version: ${{ github.ref_name }} # Use the tag as the package version | ||
community: Valheim # the game the package is for | ||
repo: valheim.thunderstore.io | ||
|
This file was deleted.
Oops, something went wrong.