Skip to content

Merge pull request #219 from GoogleCloudPlatform/issue218 #60

Merge pull request #219 from GoogleCloudPlatform/issue218

Merge pull request #219 from GoogleCloudPlatform/issue218 #60

# 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
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@v3
- uses: actions/setup-go@v3
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@main
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
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@v3
with:
name: integrationcli
path: dist/*