Skip to content

chore: without mold #22

chore: without mold

chore: without mold #22

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches:
- dev
- stable
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
check:
name: Check
uses: ./.github/workflows/check.yml

Check failure on line 17 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/check.yml" (source branch with sha:7425b96bca3bb105a799c25900a5ea9b67fe203b) : workflow is not reusable as it is missing a `on.workflow_call` trigger
release:
name: Release (${{ matrix.name }})
needs: check
strategy:
matrix:
include:
- name: Linux / x86_64
runner: namespace-profile-lightning-builder-ubuntu-amd64
target: x86_64-unknown-linux-gnu
- name: MacOS / aarch64
runner: macos-latest
target: aarch64-apple-darwin
fail-fast: true
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Cargo build
run: scripts/build --release --target ${{ matrix.target }}