From b880bd6721177d4c683d950e494c0bd89107f9d1 Mon Sep 17 00:00:00 2001 From: Shim Shtein Date: Mon, 4 Apr 2022 18:10:37 +0300 Subject: [PATCH] Ignore linter for now --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 573d852..c7ba60f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,11 +22,11 @@ jobs: tagRegexGroup: 1 # Optional. Default is 1. - name: Checkout the repository uses: actions/checkout@v2 - - uses: actions/setup-go@v3 - with: - go-version: '^1.17.0' # The Go version to download (if necessary) and use. - - run: | - go vet . + # - uses: actions/setup-go@v3 + # with: + # go-version: '^1.17.0' # The Go version to download (if necessary) and use. + # - run: | + # go vet . - name: Generate build files uses: thatisuday/go-cross-build@v1.1.0 with: @@ -42,6 +42,7 @@ jobs: env: VERSION: '${{ steps.tagName.outputs.tag }}' - name: Upload binaries to release + if: "${{ steps.tagName.outputs.tag != '' }}" # tag will be empty on pull requests, no publishing needed uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }}