Skip to content

Commit

Permalink
fix ga
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime-Cllt committed Sep 25, 2024
1 parent ff0e094 commit 004d13c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,32 @@ jobs:
run: go build -v .

- name: Archive
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.os }}
path: GoSqlCleaner
retention-days: 1


release:
needs: [ build ]
runs-on: ubuntu-latest
steps:

- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build-ubuntu-latest
path: GoSqlCleaner_ubuntu

- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build-macos-latest
path: GoSqlCleaner_macos

- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: build-windows-latest
path: GoSqlCleaner_windows
Expand Down

0 comments on commit 004d13c

Please sign in to comment.