Skip to content

Commit 3c296ae

Browse files
committed
update
1 parent f67a1b5 commit 3c296ae

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/go.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,17 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v4
3535

36+
- name: Download Artifact
37+
uses: actions/download-artifact@v4
38+
with:
39+
name: frate-binary
40+
3641
- name: Create GitHub Release
3742
id: create_release
3843
uses: actions/create-release@v1
3944
env:
4045
GITHUB_TOKEN: ${{ secrets.TOKEN }}
4146
with:
42-
# Example of using the current date for a tag name or replace it with your versioning system
4347
tag_name: "v${{ github.run_number }}"
4448
release_name: "Release ${{ github.run_number }}"
4549
draft: false
@@ -51,7 +55,6 @@ jobs:
5155
GITHUB_TOKEN: ${{ secrets.TOKEN }}
5256
with:
5357
upload_url: ${{ steps.create_release.outputs.upload_url }}
54-
asset_path: ./frate
58+
asset_path: frate
5559
asset_name: frate
5660
asset_content_type: application/octet-stream
57-

0 commit comments

Comments
 (0)