diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b9a21c7..b73d600 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -17,8 +17,11 @@ jobs: - name: Build run: sh build.sh + - name: Zip Folder + run: zip -r ${{ github.event.repository.name }}.zip dist/* + - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: - files: dist/* + files: dist/*.zip