release 0.6.3 #19
Workflow file for this run
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
name: Release tagged build | |
on: | |
push: | |
tags: [ '*' ] | |
permissions: | |
contents: write | |
packages: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
USE_STUBBED_LIBS: 1 | |
RELEASE_VERSION: ${{ github.ref_name }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Grant execute permissions for build script | |
run: chmod +x build.sh | |
- name: Build Thunderstore Package | |
run: ./build.sh --configuration=Release --target=BuildThunderstore | |
- name: Build NuGet Package | |
run: ./build.sh --configuration=Release --target=BuildNuGet | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: input-utils | |
path: LethalCompanyInputUtils/bin/Release/netstandard2.1/upload/ | |
retention-days: 30 | |
- name: Setup NuGet Push Source | |
run: dotnet nuget add source --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/Rune580/index.json" | |
- name: Get NuGet Package path | |
run: | | |
for fn in LethalCompanyInputUtils/bin/Release/netstandard2.1/artifacts/*.nupkg; do echo "NUGET_PKG_PATH=${fn}" >> "$GITHUB_ENV"; done; | |
shell: bash | |
continue-on-error: true | |
- name: Push NuGet Package | |
run: dotnet nuget push "${NUGET_PKG_PATH}" --source "github" | |
- name: Delete old release if it already exists | |
run: gh release delete --yes "${RELEASE_VERSION}" | |
continue-on-error: true | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Release under current tag | |
run: | | |
export "CHANGELOG_FILE=$(mktemp --suffix=.md)" | |
echo "CHANGELOG_FILE=${CHANGELOG_FILE}" >> $GITHUB_ENV | |
gh api --method POST -H "Accept: application/vnd.github+json" \ | |
"/repos/${GITHUB_REPOSITORY}/releases/generate-notes" \ | |
-f tag_name="${RELEASE_VERSION}" \ | |
--jq ".body" > "${CHANGELOG_FILE}" | |
cat "${CHANGELOG_FILE}" | |
gh release create "${RELEASE_VERSION}" -F "${CHANGELOG_FILE}" LethalCompanyInputUtils/bin/Release/netstandard2.1/upload/*.zip | |
shell: bash | |
continue-on-error: true | |
env: | |
GH_TOKEN: ${{ secrets.RELEASES_TOKEN }} | |
- name: Get upload file path | |
run: | | |
for fn in LethalCompanyInputUtils/bin/Release/netstandard2.1/upload/*.zip; do echo "THUNDERSTORE_PKG_PATH=${fn}" >> "$GITHUB_ENV"; done; | |
shell: bash | |
continue-on-error: true | |
- name: Upload Thunderstore Package | |
uses: GreenTF/[email protected] | |
with: | |
namespace: Rune580 | |
name: LethalCompany_InputUtils | |
description: Empty | |
version: ${{ github.ref_name }} | |
community: lethal-company | |
token: ${{ secrets.THUNDERSTORE_TOKEN }} | |
repo: thunderstore.io | |
categories: | | |
libraries | |
file: ${{ env.THUNDERSTORE_PKG_PATH }} |