feat(github-action)!: Update image ghcr.io/allenporter/flux-local to v7 #852
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
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "e2e" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
configure: | |
if: ${{ github.repository == 'onedr0p/cluster-template' }} | |
name: configure | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
config-files: | |
- talos | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup mise | |
uses: jdx/mise-action@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Python dependencies | |
shell: bash | |
run: mise run pip | |
- name: Run Sops Age key task | |
shell: bash | |
run: task bootstrap:age-keygen | |
- name: Run init tasks | |
shell: bash | |
run: | | |
task init | |
cp ./.github/tests/config-${{ matrix.config-files }}.yaml ./config.yaml | |
export BOOTSTRAP_AGE_PUBLIC_KEY=$(sed -n 's/# public key: //gp' age.key) | |
envsubst < ./config.yaml > ./config.yaml.tmp && mv ./config.yaml.tmp ./config.yaml | |
- name: Run configure task | |
shell: bash | |
run: task configure --yes | |
- name: Run clean | |
shell: bash | |
run: task bootstrap:clean |