From 889792e4faddbd6378ba76cc5ddc889ebf2afc85 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 2 Nov 2020 19:52:43 +0300 Subject: [PATCH] Add ability to trigger packages generation on PRs --- .github/workflows/build-go-packages.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-go-packages.yml b/.github/workflows/build-go-packages.yml index c5b6d3c..778cb66 100644 --- a/.github/workflows/build-go-packages.yml +++ b/.github/workflows/build-go-packages.yml @@ -10,19 +10,26 @@ on: description: 'Whether to publish releases' required: true default: 'false' + pull_request: + paths-ignore: + - 'versions-manifest.json' + - 'LICENSE' + - '**.md' + branches: + - 'main' env: - VERSION: ${{ github.event.inputs.VERSION }} + VERSION: ${{ github.event.inputs.VERSION || '1.15.3' }} defaults: run: shell: pwsh jobs: build_go: - name: Build Go ${{ github.event.inputs.VERSION }} [${{ matrix.platform }}] + name: Build Go ${{ github.event.inputs.VERSION || '1.15.3' }} [${{ matrix.platform }}] runs-on: ubuntu-latest env: - ARTIFACT_NAME: go-${{ github.event.inputs.VERSION }}-${{ matrix.platform }}-x64 + ARTIFACT_NAME: go-${{ github.event.inputs.VERSION || '1.15.3' }}-${{ matrix.platform }}-x64 strategy: fail-fast: false matrix: @@ -44,11 +51,11 @@ jobs: path: ${{ runner.temp }}/artifact test_go: - name: Test Go ${{ github.event.inputs.VERSION }} [${{ matrix.platform }}] + name: Test Go ${{ github.event.inputs.VERSION || '1.15.3' }} [${{ matrix.platform }}] needs: build_go runs-on: ${{ matrix.os }} env: - ARTIFACT_NAME: go-${{ github.event.inputs.VERSION }}-${{ matrix.platform }}-x64 + ARTIFACT_NAME: go-${{ github.event.inputs.VERSION || '1.15.3' }}-${{ matrix.platform }}-x64 strategy: fail-fast: false matrix: @@ -89,7 +96,7 @@ jobs: working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }} - name: Setup Go ${{ env.VERSION }} - uses: actions/setup-go@v2.1.1 + uses: actions/setup-go@v2.1.3 with: go-version: ${{ env.VERSION }} @@ -110,7 +117,7 @@ jobs: publish_release: name: Publish release - if: github.event.inputs.PUBLISH_RELEASES == 'true' + if: github.event_name == 'workflow_dispatch' && github.event.inputs.PUBLISH_RELEASES == 'true' needs: test_go runs-on: ubuntu-latest steps: