mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
Bumps [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) from 2 to 3. - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest-build-provenance/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/attest-build-provenance dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
640 B
YAML
32 lines
640 B
YAML
name: Reproducible build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
attestations: write
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: .github/workflows/repro.sh
|
|
|
|
- uses: actions/attest-build-provenance@v3
|
|
if: matrix.os == 'ubuntu-latest'
|
|
with:
|
|
subject-path: |
|
|
embed/sqlite3.wasm
|
|
embed/bcw2/bcw2.wasm
|
|
util/sql3util/wasm/sql3parse_table.wasm |