fix: remove kustomize prefix from k8s resources (#38) #130
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
# see https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.github/workflows/release.yml | |
name: release | |
on: | |
push: | |
tags: | |
- 'v*' | |
env: | |
# If set in the repo env vars it will use this tag to build the release notes. | |
# Useful when creating a release tag after a release candidate tags phase. | |
GORELEASER_PREVIOUS_TAG: ${{vars.GORELEASER_PREVIOUS_TAG}} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
release: | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'argoproj-labs/argocd-ephemeral-access' | |
name: Release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # pin@v4 | |
with: | |
go-version: 1.22 | |
- name: Docker Login in quay.io | |
uses: docker/login-action@dd4fa0671be5250ee6f50aedf4cb05514abda2c7 # pin@v1 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_TOKEN }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@5fdedb94abba051217030cc86d4523cf3f02243d # pin@v4 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |