Update Helm release tailscale-operator to v1.98.4 #12501
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: RPi Image Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| rpi-image-test: | |
| runs-on: ubuntu-24.04-arm | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| persist-credentials: false | |
| - name: Check for relevant changes | |
| if: github.event_name != 'workflow_dispatch' | |
| uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4 | |
| id: filter | |
| with: | |
| filters: | | |
| rpi: | |
| - 'scripts/rpi-image-customize' | |
| - 'scripts/rpi-image-test' | |
| - 'ansible/roles/os-install/files/post-install.sh' | |
| - 'tests/rpi/**' | |
| - '.github/workflows/rpi-image-test.yaml' | |
| - name: Run RPi integration test | |
| if: github.event_name == 'workflow_dispatch' || steps.filter.outputs.rpi == | |
| 'true' | |
| run: ./scripts/rpi-image-test |