Skip to content

Commit

Permalink
Update Github actions/upload@v3 (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
awawa-dev committed Nov 17, 2022
1 parent 4ddb29f commit 15d58d9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ jobs:
# upload artifacts (only on tagged commit)
- name: Upload artifacts
if: startsWith(github.event.ref, 'refs/tags')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: deploy/Hyper*

# Upload artifacts from commit
- name: Upload artifacts from commit
if: (startsWith(github.event.ref, 'refs/tags') != true)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Linux-${{ matrix.debian }}-${{ matrix.dockerImage }}-DEB-installer
path: deploy/Hyper*.deb
Expand Down Expand Up @@ -146,14 +146,14 @@ jobs:
# Upload artifacts (only on tagged commit)
- name: Upload artifacts
if: startsWith(github.event.ref, 'refs/tags')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: build/Hyper*.dmg

# Upload artifacts from commit
- name: Upload artifacts from commit
if: (startsWith(github.event.ref, 'refs/tags') != true)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Apple_macOS_x64_DMG_installer
path: build/Hyper*.dmg
Expand Down Expand Up @@ -203,14 +203,14 @@ jobs:
# upload artifacts (only on tagged commit)
- name: Upload artifacts
if: startsWith(github.event.ref, 'refs/tags')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: build/Hyper*

# Upload artifacts from commit
- name: Upload artifacts from commit
if: (startsWith(github.event.ref, 'refs/tags') != true)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Windows_x64_setup
path: build/Hyper*.exe
Expand Down

0 comments on commit 15d58d9

Please sign in to comment.