This commit is contained in:
CyberL1 2025-02-16 08:49:04 +01:00
parent afb5f05e8d
commit 5c958b2b2d

View File

@ -33,12 +33,11 @@ jobs:
export GOOS=${{ matrix.os }} export GOOS=${{ matrix.os }}
export GOARCH=${{ matrix.arch }} export GOARCH=${{ matrix.arch }}
go build go build
- run: ls - name: Pack binary
# - name: Pack binary run: zip holesail-proxy-${{ matrix.os }}-${{ matrix.arch }}.zip holesail-proxy${{ matrix.os == 'windows' && '.exe' || '' }}
# run: zip holesail-proxy-${{ matrix.os }}-${{ matrix.arch }}.zip holesal-proxy${{ matrix.os == 'windows' && '.exe' || '' }} - name: Create release
# - name: Create release uses: ncipollo/release-action@v1.15.0
# uses: ncipollo/release-action@v1.15.0 with:
# with: tag: ${{ needs.create-tag.outputs.new_tag }}
# tag: ${{ needs.create-tag.outputs.new_tag }} artifacts: holesail-proxy-${{ matrix.os }}-${{ matrix.arch }}.zip
# artifacts: holesail-proxy-${{ matrix.os }}-${{ matrix.arch }}.zip allowUpdates: true
# allowUpdates: true