Skip to content

Commit

Permalink
Update to actions/upload-artifact@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
sago35 committed Jan 24, 2025
1 parent fbea995 commit 067ee0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@ jobs:

- name: Publish artifact for ubuntu-latest
if: runner.os == 'Linux'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ env.app_name }}-linux-amd64
path: |
${{ env.app_name }}
- name: Publish artifact for windows-latest
if: runner.os == 'Windows'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ env.app_name }}-windows-amd64
path: |
${{ env.app_name }}.exe
- name: Publish artifact for macos-latest
if: runner.os == 'macOS'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ env.app_name }}-macos-amd64
path: |
Expand Down

0 comments on commit 067ee0e

Please sign in to comment.