diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index 72bb623..f234b11 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -89,7 +89,9 @@ jobs: uses: softprops/action-gh-release@v2 with: tag_name: ${{ steps.bump.outputs.new_tag }} - files: gosh-* + files: | + gosh-linux-amd64 + gosh-darwin-arm64 generate_release_notes: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9b18fe..85d26e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,9 @@ jobs: - name: Create Release uses: softprops/action-gh-release@v2 with: - files: gosh-* + files: | + gosh-linux-amd64 + gosh-darwin-arm64 generate_release_notes: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}