From 3f3a577594ab21f1e33b2bc06fd8be45138b61ae Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 7 Jan 2024 19:10:05 -0800 Subject: [PATCH] Final changes? --- .github/actions/publish-test-artifact/action.yml | 2 -- .github/actions/test/action.yml | 2 -- .github/workflows/build.yml | 8 ++------ 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/actions/publish-test-artifact/action.yml b/.github/actions/publish-test-artifact/action.yml index 66c4b8644..af3642043 100644 --- a/.github/actions/publish-test-artifact/action.yml +++ b/.github/actions/publish-test-artifact/action.yml @@ -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 diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 468bfc41d..09fc2b20a 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -1,5 +1,3 @@ -# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action - name: Test description: Runs unit/integration tests diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6dc4521d5..5b207fe62 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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"