diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0bc671f..d43a47f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,15 +77,6 @@ jobs: asset_path: bin/runpodctl-windows-amd64.exe asset_name: runpodctl-windows-amd64.exe asset_content_type: application/octet-stream - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v5 - with: - distribution: goreleaser - version: latest - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.PUBLISHER_TOKEN }} - VERSION: ${{ steps.release.outputs.tag_name }} - name: upload linux arm64 release binary uses: actions/upload-release-asset@v1.0.2 env: @@ -104,3 +95,12 @@ jobs: asset_path: bin/runpodctl-android-arm64 asset_name: runpodctl-android-arm64 asset_content_type: application/octet-stream + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v5 + with: + distribution: goreleaser + version: latest + args: release --clean --skip=validate + env: + GITHUB_TOKEN: ${{ secrets.PUBLISHER_TOKEN }} + VERSION: ${{ steps.release.outputs.tag_name }}