pin actix-web to minor #2
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: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
jobs: | ||
publish-crate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
- uses: katyo/publish-crates@5ea6cad5f1202323f7c7da183018fe8c79b86be4 | ||
id: publish-crates | ||
with: | ||
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
- name: if crate published | ||
if: fromJSON(steps.publish-crates.outputs.published).* | ||
run: | | ||
Check failure on line 26 in .github/workflows/publish.yml GitHub Actions / publishInvalid workflow file
|
||
LIST="${{ join(fromJSON(steps.publish-crates.outputs.published).*.name, ', ')) }}" | ||
echo "Published crates: $LIST" |