0.25.1 #28
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: publish | ||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [published] | ||
jobs: | ||
publish: | ||
name: Publish | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Install stable toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
- name: Publish egobox-doe | ||
uses: katyo/publish-crates@v2 | ||
path: ./crates/doe | ||
Check failure on line 24 in .github/workflows/publish.yml GitHub Actions / publishInvalid workflow file
|
||
with: | ||
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
- name: Publish egobox-gp | ||
uses: katyo/publish-crates@v2 | ||
path: ./crates/gp | ||
with: | ||
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
- name: Publish egobox-moe | ||
uses: katyo/publish-crates@v2 | ||
path: ./crates/moe | ||
with: | ||
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
- name: Publish egobox-ego | ||
uses: katyo/publish-crates@v2 | ||
path: ./crates/ego | ||
with: | ||
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} |