obtain pc from ExecState #9
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: Check that tags are everywhere in the docs | |
| on: | |
| workflow_call: | |
| push: | |
| branches: ["main"] | |
| tags: | |
| - v*.*.* | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "docs" | |
| - ".github/workflows/openvm-tags.yml" | |
| - "ci/scripts/check_openvm_tags.sh" | |
| env: | |
| CARGO_NET_GIT_FETCH_WITH_CLI: true | |
| jobs: | |
| docs: | |
| permissions: | |
| contents: write | |
| packages: read | |
| concurrency: | |
| group: ${{ github.workflow_ref }}-docs-${{ github.ref }} | |
| runs-on: | |
| - runs-on=${{ github.run_id }}/runner=8cpu-linux-x64 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Check the tags | |
| working-directory: docs | |
| run: ../ci/scripts/check_openvm_tags.sh . |