Skip to content

Commit

Permalink
change upload action
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed Feb 8, 2024
1 parent e9ff61e commit 5f0a662
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,15 +242,15 @@ jobs:

- name: Upload Nuget
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v3.1.2
with:
name: nuget
path: ${{ github.workspace }}/release/*.nupkg
retention-days: 30

- name: Upload Zipped Plug-ins
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v3.1.2
with:
name: plug-ins
path: ${{ github.workspace }}/src/Plugins/release/*.zip
Expand All @@ -262,7 +262,7 @@ jobs:
needs: [build, unit-test]
if: ${{ ! ( github.event.inputs.nuget ) && ! ( contains(github.ref, 'refs/heads/main') ) }}
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v3.1.2
id: download

- name: List artifacts
Expand All @@ -287,7 +287,7 @@ jobs:
needs: [build, unit-test]
if: ${{ github.event.inputs.nuget }}
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v3.1.2
id: download

- name: List artifacts
Expand Down

0 comments on commit 5f0a662

Please sign in to comment.