From 39abba2734601fb2445725fb99403236d4b9e5c8 Mon Sep 17 00:00:00 2001 From: Ionite Date: Sun, 25 Jun 2023 21:22:29 -0400 Subject: [PATCH] Move remove artifact after build, add token --- .github/workflows/release.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a65910bb..f37bce50 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,12 +22,6 @@ jobs: run: | echo "Using tag ${{ env.GIT_TAG_NAME }}" echo "RELEASE_VERSION=${{ env.GIT_TAG_NAME }}.0" >> $env:GITHUB_ENV - - - name: Remove old artifacts - uses: c-hive/gha-remove-artifacts@v1 - with: - age: '90 seconds' - skip-tags: false - name: Set up .NET uses: actions/setup-dotnet@v3 @@ -40,6 +34,13 @@ jobs: - name: Build run: dotnet publish ./StabilityMatrix/StabilityMatrix.csproj -o out -c Release -r win-x64 -p:Version=$env:RELEASE_VERSION -p:FileVersion=$env:RELEASE_VERSION -p:AssemblyVersion=$env:RELEASE_VERSION -p:PublishReadyToRun=true -p:PublishSingleFile=true --self-contained true + - name: Remove old artifacts + uses: c-hive/gha-remove-artifacts@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + age: '90 seconds' + skip-tags: false + - name: Upload Artifact uses: actions/upload-artifact@v2 with: