Finalize 1.3.6 #176
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: Build Debug | |
on: | |
push: | |
branches: ["dev"] | |
pull_request: | |
branches: ["dev"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_INSTALL_DIR: ~/.dotnet | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
filter: tree:0 | |
- name: Set up variables | |
id: vars | |
run: | | |
# Extract package version from project | |
version=$(grep -oP '<Version>\K[^<]+' LCVR.csproj) | |
echo "version=$version" >> "$GITHUB_OUTPUT" | |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: Setup Dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0" | |
- name: Restore NuGet packages | |
run: dotnet restore | |
- name: Build app | |
run: dotnet build | |
- name: Configure GPG Key | |
run: | | |
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import | |
env: | |
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} | |
- name: Prepare and bundle package | |
run: | | |
# Set up template | |
mkdir package | |
git --work-tree=./package checkout origin/thunderstore ./ | |
# Copy and sign debug binaries | |
cp bin/Debug/netstandard2.1/LCVR.dll ./package/BepInEx/plugins/LCVR/ | |
cp bin/Debug/netstandard2.1/LCVR.Preload.dll ./package/BepInEx/patchers/LCVR/ | |
gpg --output ./package/BepInEx/plugins/LCVR/LCVR.dll.sig --detach-sig ./package/BepInEx/plugins/LCVR/LCVR.dll | |
gpg --output ./package/BepInEx/patchers/LCVR/LCVR.Preload.dll.sig --detach-sig ./package/BepInEx/patchers/LCVR/LCVR.Preload.dll | |
# Move assets | |
mv ./package/lethalcompanyvr ./package/BepInEx/plugins/LCVR/lethalcompanyvr | |
# Copy docs and license | |
cp CHANGELOG.md ./package/CHANGELOG.md | |
cp Docs/Thunderstore/README.md ./package/README.md | |
cp LICENSE ./package/LICENSE | |
# Update Thunderstore manifest | |
jq '.version_number = "${{ steps.vars.outputs.version }}"' ./package/manifest.json > ./package/manifest_new.json | |
mv ./package/manifest_new.json ./package/manifest.json | |
- name: Upload build artifacts | |
if: github.event_name == 'push' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: LCVR-${{ steps.vars.outputs.version }}-dev-${{ steps.vars.outputs.sha_short }} | |
path: ./package |