Final changes?
This commit is contained in:
parent
f881b1989e
commit
3f3a577594
.github
|
@ -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
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action
|
||||
|
||||
name: Test
|
||||
description: Runs unit/integration tests
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue