Skip to content

Commit

Permalink
feat: fixed workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZhengZhao committed Apr 12, 2024
1 parent b83616d commit 5cac556
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
run: |
export GOOS=linux
export GOARCH=amd64
bee pack -o linux_amd64_feature -be GOOS=$GOOS GOARCH=$GOARCH
bee pack -a linux_amd64_feature -be GOOS=$GOOS GOARCH=$GOARCH
- name: Build and package for Windows
run: |
export GOOS=windows
export GOARCH=amd64
bee pack -o windows_amd64_feature -be GOOS=$GOOS GOARCH=$GOARCH
bee pack -a windows_amd64_feature -be GOOS=$GOOS GOARCH=$GOARCH
- name: Release
uses: softprops/action-gh-release@v2
Expand All @@ -56,7 +56,7 @@ jobs:
draft: false
prerelease: false
files: |
linux_amd64_feature
windows_amd64_feature
linux_amd64_feature.tar.gz
windows_amd64_feature.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_PERSONAL_ACCESS_TOKEN }}

0 comments on commit 5cac556

Please sign in to comment.