Browse Source

Merge pull request #114 from ionite34/release-ci-artifact-reorder

pull/5/head v1.0.0
Ionite 1 year ago committed by GitHub
parent
commit
b97a2d8daa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .github/workflows/release.yml

13
.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:

Loading…
Cancel
Save