Update Helm release grafana to v12.3.3 #10021
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: Build Flake Outputs | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build-flake-outputs: | |
| name: Build flake outputs (${{ matrix.label }}) | |
| runs-on: ${{ matrix.runs-on }} | |
| strategy: | |
| matrix: | |
| include: | |
| - label: linux amd64 | |
| runs-on: ubuntu-latest | |
| flake-output: .#devShells.x86_64-linux.default | |
| - label: linux arm64 | |
| runs-on: ubuntu-24.04-arm | |
| flake-output: .#devShells.aarch64-linux.default | |
| - label: macos arm64 | |
| runs-on: macos-26 | |
| flake-output: .#devShells.aarch64-darwin.default | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - name: Check for flake changes | |
| if: github.event_name != 'workflow_dispatch' | |
| uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4 | |
| id: changes | |
| with: | |
| filters: | | |
| flake: | |
| - 'flake.nix' | |
| - 'flake.lock' | |
| - '.github/workflows/flake-builds.yaml' | |
| - name: Install Nix | |
| if: github.event_name == 'workflow_dispatch' || steps.changes.outputs.flake | |
| == 'true' | |
| uses: cachix/install-nix-action@8aa03977d8d733052d78f4e008a241fd1dbf36b3 # v31 | |
| with: | |
| github_access_token: ${{ github.token }} | |
| - name: Setup Cachix | |
| if: github.event_name == 'workflow_dispatch' || steps.changes.outputs.flake | |
| == 'true' | |
| uses: cachix/cachix-action@5f2d7c5294214f71b873db4b969586b980625e71 # v17 | |
| with: | |
| name: claytono | |
| authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
| - name: Build dev shell | |
| if: github.event_name == 'workflow_dispatch' || steps.changes.outputs.flake | |
| == 'true' | |
| run: nix build --print-build-logs --log-format raw --verbose ${{ matrix.flake-output }} |