Skip to content

Initial release

Initial release #4

Workflow file for this run

name: Publish package
on:
release:
types: [published] # run when a new release is published
env:
name: ${{github.event.repository.name}} # Edit this if the package name differs from the repo name
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get clean version
run: |
echo cleanVersion=$(echo ${{github.ref_name}} | sed s/v//g) >> $GITHUB_ENV
- name: Check that version matches
run: |
if [[ "$(grep -Po "\d+\.\d+\.\d+" $(find ./ -name mod.json))" != "${{ env.cleanVersion }}" ]]; then
echo "::debug::${{env.cleanVersion}}"
echo "::debug::$(cat $(find ./ -name mod.json ))"
echo "::error::Version in mod.json does not match tag version"
exit 1
fi
publish:
runs-on: ubuntu-latest
needs: verify
steps:
- uses: actions/checkout@v3
- name: Upload Thunderstore Package
uses: GreenTF/upload-thunderstore-package@f891cebfa6d841fed49052437f08488f66ab81c8
with:
repo: northstar.thunderstore.io
community: northstar
# Name of the team to publish the mod under
# This should be modified if your github username is different than your team name on Thunderstore
namespace: ${{ github.repository_owner }} # <------ DOUBLE CHECK THIS
# Name of the package
name: ${{ env.name }} # This can be modified if the package name differs from the repo name
# Package version to publish
version: ${{ github.ref_name }} # This is the tag that was created in the release
# Description of the mod
description: Server mod to connect to the 40mm tracking api
# Thunderstore API token
token: ${{ secrets.TS_KEY }}
# Directory to wrap the contents of the repo in
wrap: mods/${{ github.repository_owner }}.${{ env.name }} # This will wrap your Author.ModName folder in a mods/ folder before publishing
#deps: "northstar-Northstar@1.9.3" # <------------- Uncomment this line to add dependencies to your mod, each sparated by a space
categories: |-
mods
server-side