Skip to content

chore(deps): update dependency golangci/golangci-lint to v1.59.0 (#248) #73

chore(deps): update dependency golangci/golangci-lint to v1.59.0 (#248)

chore(deps): update dependency golangci/golangci-lint to v1.59.0 (#248) #73

Workflow file for this run

name: release
on:
push:
tags:
- v*
pull_request:
paths:
- config/**
- .github/workflows/release.yaml
jobs:
manifest:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- run: kustomize edit set image controller='ghcr.io/${{ github.repository }}:${{ github.ref_name }}'
working-directory: config/manager
- run: kustomize build config/default > /tmp/ktunnels.yaml
- run: cat /tmp/ktunnels.yaml
- if: github.ref_type == 'tag'
run: gh release upload '${{ github.ref_name }}' /tmp/ktunnels.yaml --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}