Merge pull request #124 from stefanprodan/flux-2.7 #59
Workflow file for this run
This file contains hidden or 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: push | |
| on: | |
| push: | |
| tags: [ 'v*' ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| timoni: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| packages: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Timoni | |
| uses: stefanprodan/timoni/actions/setup@main | |
| - name: Setup Flux CLI | |
| uses: fluxcd/flux2/action@main | |
| - name: Setup Cosign | |
| uses: sigstore/cosign-installer@main | |
| with: | |
| cosign-release: v2.6.1 | |
| - name: Login to GHCR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Publish Timoni module | |
| run: make push-mod VERSION=$GITHUB_REF_NAME | |
| - name: Publish Flux default manifests | |
| run: make push-manifests VERSION=$GITHUB_REF_NAME |