Skip to content

Commit

Permalink
cargo workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwilliams committed Apr 12, 2022
1 parent 34303f1 commit 9df8c44
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 12 deletions.
40 changes: 28 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,34 @@ on:
types: [published]

jobs:
# publish:
# runs-on: ubuntu-latest
# steps:
# - name: Git Checkout
# uses: actions/checkout@v3
# - name: Publish to crates.io
# uses: actions-rs/cargo@v1
# with:
# command: publish
# args: -p boa_engine --token ${CARGO_REGISTRY_TOKEN}
# env:
# CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
publish:
name: publish
runs-on: ubuntu-latest
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 --yes minor
doc-publish:
# needs: publish
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ members = [
"boa_examples",
]

[workspace.metadata.workspaces]
allow_branch = "main"

# The release profile, used for `cargo build --release`.
[profile.release]
# Enables "fat" LTO, for faster release builds
Expand Down
1 change: 1 addition & 0 deletions boa_examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ authors = ["boa-dev"]
repository = "https://github.com/boa-dev/boa"
license = "Unlicense/MIT"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
1 change: 1 addition & 0 deletions boa_tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ repository = "https://github.com/boa-dev/boa"
keywords = ["javascript", "ECMASCript", "compiler", "test262", "tester"]
categories = ["command-line-utilites"]
license = "Unlicense/MIT"
publish = false

[dependencies]
boa_engine = { path = "../boa_engine", version = "0.14.0" }
Expand Down
1 change: 1 addition & 0 deletions boa_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ repository = "https://github.com/boa-dev/boa"
keywords = ["javascript", "compiler", "lexer", "parser", "js"]
categories = ["parser-implementations", "wasm", "compilers"]
license = "Unlicense/MIT"
publish = false

[dependencies]
boa_engine = { path = "../boa_engine", features = ["console"], version = "0.14.0" }
Expand Down

0 comments on commit 9df8c44

Please sign in to comment.