ci #218
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions | |
| permissions: | |
| contents: read | |
| on: | |
| schedule: | |
| - cron: '0 10 * * *' | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'releases/v*' | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| version: | |
| - latest | |
| - '~> 2.6' | |
| - '~> 1.26' | |
| distribution: | |
| - goreleaser | |
| - goreleaser-pro | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.18 | |
| - | |
| name: Check | |
| uses: ./ | |
| with: | |
| version: ${{ matrix.version }} | |
| args: check --verbose | |
| workdir: ./test | |
| - | |
| name: GoReleaser | |
| if: ${{ !(github.event_name == 'pull_request' && matrix.distribution == 'goreleaser-pro') }} | |
| uses: ./ | |
| env: | |
| GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} | |
| with: | |
| distribution: ${{ matrix.distribution }} | |
| version: ${{ matrix.version }} | |
| args: release --skip=publish --clean --snapshot | |
| workdir: ./test | |
| install-only: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - latest | |
| - '~> 2.6' | |
| - '~> 1.26' | |
| distribution: | |
| - goreleaser | |
| - goreleaser-pro | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.18 | |
| - | |
| name: GoReleaser | |
| if: ${{ !(github.event_name == 'pull_request' && matrix.distribution == 'goreleaser-pro') }} | |
| uses: ./ | |
| with: | |
| distribution: ${{ matrix.distribution }} | |
| version: ${{ matrix.version }} | |
| install-only: true | |
| - | |
| name: Check | |
| if: ${{ !(github.event_name == 'pull_request' && matrix.distribution == 'goreleaser-pro') }} | |
| run: | | |
| goreleaser check --verbose | |
| signing: | |
| runs-on: ${{ matrix.os }} | |
| if: github.event_name != 'pull_request' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.18 | |
| - | |
| name: Import GPG key | |
| id: import_gpg | |
| uses: crazy-max/ghaction-import-gpg@v6 | |
| with: | |
| gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY_TEST }} | |
| passphrase: ${{ secrets.PASSPHRASE_TEST }} | |
| - | |
| name: Check | |
| uses: ./ | |
| with: | |
| version: latest | |
| args: -f .goreleaser-signing.yml check --verbose | |
| workdir: ./test | |
| env: | |
| GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} | |
| - | |
| name: GoReleaser | |
| uses: ./ | |
| with: | |
| version: latest | |
| args: -f .goreleaser-signing.yml release --skip=publish --clean --snapshot | |
| workdir: ./test | |
| env: | |
| GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} | |
| upload-artifact: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.18 | |
| - | |
| name: Check | |
| uses: ./ | |
| with: | |
| args: check --verbose | |
| workdir: ./test | |
| - | |
| name: GoReleaser | |
| uses: ./ | |
| with: | |
| args: release --skip=publish --clean --snapshot | |
| workdir: ./test | |
| - | |
| name: Upload assets | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: myapp | |
| path: ./test/dist/* | |
| dist: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.18 | |
| - | |
| name: GoReleaser | |
| uses: ./ | |
| with: | |
| args: release --config .goreleaser-dist.yml --skip=publish --clean --snapshot | |
| workdir: ./test | |
| - | |
| name: Check dist | |
| run: | | |
| tree -nh ./test/_output | |
| nightly: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| distribution: | |
| - goreleaser-pro | |
| - goreleaser | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.18 | |
| - | |
| name: GoReleaser | |
| uses: ./ | |
| with: | |
| install-only: true | |
| distribution: ${{ matrix.distribution }} | |
| version: nightly | |
| - | |
| name: Check | |
| run: | | |
| goreleaser check -f ./test/.goreleaser.yml | |
| goreleaser --version | |
| goreleaser --version | grep nightly | |