Merge pull request #302 from GoogleCloudPlatform/issue301 #75
Workflow file for this run
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
# Copyright 2022 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: integrationcli-release | |
permissions: read-all | |
on: | |
push: | |
# Publish semver tags as releases. | |
tags: | |
- v[0-9].[0-9]+.[0-9] | |
- v[0-9].[0-9]+.[0-9]+-beta.[0-9] | |
workflow_dispatch: | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 #v4 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 #v5 | |
with: | |
go-version-file: './go.mod' | |
check-latest: true | |
- name: Reviewdog Lint | |
uses: reviewdog/action-golangci-lint@v1 | |
with: | |
reporter: github-check | |
- name: Write private key to disk | |
run: echo "${{ secrets.COSIGN_PRIVATE_KEY }}" > /tmp/cosign.key | |
- uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da #v3.7.0 | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 #v6 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }} | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
- name: Upload assets | |
uses: actions/upload-artifact@97a0fba1372883ab732affbe8f94b823f91727db # v3.pre.node20 | |
with: | |
name: integrationcli | |
path: dist/* |