Skip to content

Commit

Permalink
upgrade artifact upload to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
therealpaulgg committed Oct 30, 2024
1 parent 821448a commit 3dfd8a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
& "${env:ProgramFiles(x86)}\Inno Setup 6\iscc.exe" /dMyAppVersion="${{github.ref_name}}" "$env:GITHUB_WORKSPACE\win-build\setup.iss"
shell: powershell
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ssh-sync-setup
path: ./win-build/Output/ssh-sync-setup.exe
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Go Build
run: go build -o ssh-sync -ldflags "-X main.version=${{github.ref_name}}"
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ssh-sync
path: ./ssh-sync
Expand All @@ -85,7 +85,7 @@ jobs:
fpm -s dir -t rpm -n ssh-sync -v ${{ github.ref_name }} --description "ssh-sync" \
./ssh-sync=/usr/local/bin/ssh-sync
- name: Upload Linux Packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: packages
path: |
Expand Down

0 comments on commit 3dfd8a8

Please sign in to comment.