Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Izumiko authored Oct 3, 2024
1 parent c297620 commit 613c3c3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ jobs:
CGO_ENABLED: 0
steps:
- name: Checkout codebase
uses: actions/checkout@v3
- uses: actions/setup-go@v3
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '>=1.20.0'
go-version: '>=1.23.0'
check-latest: true
- run: go mod download

- name: Build iwaradl
run: |
go build -trimpath -ldflags "-s -w -buildid=" .
- name: Upload files to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: iwaradl-${{ env.GOOS }}-${{ env.GOARCH }}
path: |
Expand All @@ -52,7 +52,7 @@ jobs:
run: |
mkdir release && mv ./iwaradl* ./release/ && mv ./config.yaml ./release/
- name: Archive Release
uses: thedoctor0/zip-release@0.7.1
uses: thedoctor0/zip-release@0.7.6
if: github.event_name == 'release'
with:
type: 'zip'
Expand Down

0 comments on commit 613c3c3

Please sign in to comment.