Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gregsdennis committed Sep 23, 2024
1 parent f3f6bb0 commit 6477bea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: dotnet test --no-restore --verbosity normal --logger:"trx;LogFileName=test-results.trx"
- name: Upload Unit Test Results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Unit Test Results
path: '**/*/test-results.trx'
Expand All @@ -48,7 +48,7 @@ jobs:
pull-requests: write
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Publish Unit Test Results
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish-models.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ jobs:
# Publish
- name: publish models
id: publish_models
uses: alirezanet/publish-nuget@v3.0.0
uses: alirezanet/publish-nuget@v3.1.0
with:
PROJECT_FILE_PATH: Graeae.Models/Graeae.Models.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
INCLUDE_SYMBOLS: true
TAG_FORMAT: models-v*
PACKAGE_NAME: Graeae.Models
- name: archive packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: archive-packages
path: |
Expand Down

0 comments on commit 6477bea

Please sign in to comment.