Skip to content

Update-Flux

Update-Flux #9

Workflow file for this run

name: Update-Flux
on:
workflow_dispatch:
jobs:
update-flux:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flux CLI
uses: fluxcd/flux2/action@main
with:
version: "latest"
- name: Update flux
run: flux install --export > ./kubernetes/infra/flux/gotk-components.old
- name: Commit and push changes
run: |
git config user.email "github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
git add .
git commit -m "Update flux"
git branch -b gh-actions/flux-update
git push
- name: Create Pull Request
run: gh pr create -B master -H gh-actions/flux-update --title 'Update Flux' --body 'Updates flux components using Flux CLI'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}