Final changes?

This commit is contained in:
Mark McDowall 2024-01-07 19:10:05 -08:00
parent f881b1989e
commit 3f3a577594
3 changed files with 2 additions and 10 deletions
.github
actions
publish-test-artifact
test
workflows

View File

@ -1,5 +1,3 @@
# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action
name: Publish Test Artifact
description: Publishes a test artifact

View File

@ -1,5 +1,3 @@
# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action
name: Test
description: Runs unit/integration tests

View File

@ -1,6 +1,3 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build
on:
@ -8,7 +5,6 @@ on:
branches:
- develop
- main
- marktest
pull_request:
branches:
- develop
@ -41,8 +37,8 @@ jobs:
id: variables
shell: bash
run: |
# Add 700 to the build number
SONARR_VERSION="${{ env.VERSION }}.$((${{ github.run_number }}+700))"
# Add 800 to the build number because GitHub won't let us pick an arbitrary starting point
SONARR_VERSION="${{ env.VERSION }}.$((${{ github.run_number }}+800))"
DOTNET_VERSION=$(jq -r '.sdk.version' global.json)
echo "SDK_PATH=${{ env.DOTNET_ROOT }}/sdk/${DOTNET_VERSION}" >> "$GITHUB_ENV"