Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Github actions/upload@v3 #373

Merged
merged 1 commit into from
Nov 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -136,14 +136,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 @@ -193,14 +193,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