|
|
|
@ -4,46 +4,17 @@ on:
|
|
|
|
|
types: [published] |
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
|
# publish: |
|
|
|
|
# name: publish |
|
|
|
|
# runs-on: ubuntu-latest |
|
|
|
|
# timeout-minutes: 60 |
|
|
|
|
# steps: |
|
|
|
|
# - name: Checkout repository |
|
|
|
|
# uses: actions/checkout@v3 |
|
|
|
|
|
|
|
|
|
# - name: Install Rust toolchain |
|
|
|
|
# uses: actions-rs/toolchain@v1 |
|
|
|
|
# with: |
|
|
|
|
# toolchain: stable |
|
|
|
|
# profile: minimal |
|
|
|
|
# override: true |
|
|
|
|
|
|
|
|
|
# - name: Install cargo-workspaces |
|
|
|
|
# uses: actions-rs/install@v0.1 |
|
|
|
|
# with: |
|
|
|
|
# crate: cargo-workspaces |
|
|
|
|
|
|
|
|
|
# - name: Release |
|
|
|
|
# env: |
|
|
|
|
# CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |
|
|
|
|
# PATCH: ${{ github.run_number }} |
|
|
|
|
# shell: bash |
|
|
|
|
# run: | |
|
|
|
|
# git config --global user.email "runner@gha.local" |
|
|
|
|
# git config --global user.name "Github Action" |
|
|
|
|
# cargo workspaces publish \ |
|
|
|
|
# --from-git \ |
|
|
|
|
# --yes \ |
|
|
|
|
# --no-git-commit \ |
|
|
|
|
# skip |
|
|
|
|
|
|
|
|
|
doc-publish: |
|
|
|
|
needs: publish |
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
timeout-minutes: 60 |
|
|
|
|
steps: |
|
|
|
|
- uses: actions/checkout@v3 |
|
|
|
|
- name: Install Rust toolchain |
|
|
|
|
uses: actions-rs/toolchain@v1 |
|
|
|
|
with: |
|
|
|
|
toolchain: stable |
|
|
|
|
profile: minimal |
|
|
|
|
override: true |
|
|
|
|
- name: Install wasm-pack |
|
|
|
|
uses: baptiste0928/cargo-install@v2.1.0 |
|
|
|
|
with: |
|
|
|
@ -73,7 +44,6 @@ jobs:
|
|
|
|
|
|
|
|
|
|
release-binaries: |
|
|
|
|
name: Publish binaries |
|
|
|
|
needs: publish |
|
|
|
|
strategy: |
|
|
|
|
fail-fast: false |
|
|
|
|
matrix: |
|
|
|
@ -100,6 +70,12 @@ jobs:
|
|
|
|
|
runs-on: ${{ matrix.os }} |
|
|
|
|
steps: |
|
|
|
|
- uses: actions/checkout@v3 |
|
|
|
|
- name: Install Rust toolchain |
|
|
|
|
uses: actions-rs/toolchain@v1 |
|
|
|
|
with: |
|
|
|
|
toolchain: stable |
|
|
|
|
profile: minimal |
|
|
|
|
override: true |
|
|
|
|
- name: Build |
|
|
|
|
run: cargo build --target ${{ matrix.target }} --verbose --release --locked --bin boa |
|
|
|
|
- name: Upload binaries to release |
|
|
|
|