chore: update multihash & cid #12
Workflow file for this run
This file contains 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: Release Checker | |
on: | |
pull_request_target: | |
paths: ["Cargo.toml"] | |
types: [ opened, synchronize, reopened, labeled, unlabeled ] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
release-check: | |
uses: ipdxco/unified-github-workflows/.github/workflows/[email protected] | |
with: | |
sources: '["Cargo.toml"]' | |
upload-release-assets: | |
needs: [release-check] | |
if: fromJSON(needs.release-check.outputs.json)['Cargo.toml'] | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CARGO_INCREMENTAL: 0 | |
CACHE_SKIP_SAVE: ${{ matrix.push == '' || matrix.push == 'false' }} | |
RUSTFLAGS: -Dwarnings | |
strategy: | |
matrix: | |
network: [ 'mainnet', 'caterpillarnet', 'butterflynet', 'calibrationnet', 'devnet', 'testing', 'testing-fake-proofs' ] | |
steps: | |
- name: Checking out | |
uses: actions/checkout@v4 | |
- name: Setting up cache | |
uses: pl-strflt/rust-sccache-action@v1 | |
env: | |
SCCACHE_CACHE_SIZE: 2G | |
SCCACHE_DIR: ${{ github.workspace }}/.cache/sccache | |
CACHE_SKIP_SAVE: true | |
- name: Writing bundle | |
env: | |
BUILD_FIL_NETWORK: ${{ matrix.network }} | |
run: | | |
cargo run --locked -- -o output/builtin-actors.car | |
- name: Upload release assets to GitHub Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_RELEASE_URL: ${{ github.api_url }}/repos/${{ github.repository }}/releases/${{ fromJSON(needs.release-check.outputs.json)['Cargo.toml'].id }} | |
BUILD_FIL_NETWORK: ${{ matrix.network }} | |
run: | | |
./scripts/upload-release-assets.sh |