diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/.github/workflows/check_tools_sha.yml | |
Diffstat (limited to 'vcpkg/.github/workflows/check_tools_sha.yml')
| -rw-r--r-- | vcpkg/.github/workflows/check_tools_sha.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vcpkg/.github/workflows/check_tools_sha.yml b/vcpkg/.github/workflows/check_tools_sha.yml new file mode 100644 index 0000000..123c52c --- /dev/null +++ b/vcpkg/.github/workflows/check_tools_sha.yml @@ -0,0 +1,23 @@ +name: Check vcpkg Tools SHA + +on: + pull_request: + paths: + - "scripts/vcpkg-tools.json" + +permissions: + contents: read + +jobs: + check-tools-sha: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Bootstrap vcpkg + run: ./bootstrap-vcpkg.sh + + - name: Run vcpkg x-check-tools-sha + run: vcpkg z-check-tools-sha scripts/vcpkg-tools.json || echo "Run 'vcpkg z-check-tools-sha scripts/vcpkg-tools.json --fix' to update the SHA values" |