From 5cac556ecff3517238f6896b7d1cb6c20eb460e8 Mon Sep 17 00:00:00 2001 From: HaoZhengZhao Date: Fri, 12 Apr 2024 22:23:00 +0800 Subject: [PATCH] feat: fixed workflow --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8942e81..6cf88f3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 @@ -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 }} \ No newline at end of file