Helm Kanvas Snapshot v0.3.7 #23
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
name: Kanvas Snapshot Build & Release | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
pull_request: # Add this to trigger on PR events | |
branches: | |
- install-script-enhancement | |
jobs: | |
release: | |
if: github.repository == 'meshery/helm-kanvas-snapshot' && startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, 'patch') && !contains(github.ref, 'alpha') && !contains(github.ref, 'beta') && !contains(github.ref, 'rc') | |
runs-on: macos-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
ref: ${{ inputs.branch }} | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.59 | |
working-directory: . | |
args: --timeout 10m --verbose | |
skip-cache: true | |
- name: Run GoReleaser with tag | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: 2 # Use latest GoReleaser action version | |
args: release --clean --skip validate -f .github/.goreleaser.yml # Corrected filename to root | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
RELEASE_CHANNEL: "stable" | |
PROVIDER_TOKEN: ${{ secrets.PROVIDER_TOKEN }} |