release: promote Opcore 0.2.1 hotfix #322
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: provenance | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| provenance: | |
| name: provenance | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: x86_64-unknown-linux-musl | |
| - name: Setup Linux musl toolchain | |
| run: sudo apt-get update && sudo apt-get install -y musl-tools | |
| - name: Install | |
| run: npm ci | |
| - name: Build release artifacts | |
| run: npm run build | |
| - name: Provenance checks | |
| run: npm run provenance:check && npm run release-receipt:check |