Skip to content

Release

Release #7

Workflow file for this run

name: Release
on:
release:
types: [created]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
include:

Check failure on line 13 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 13, Col: 5): Unexpected value 'include'
- rust: stable
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get install libssl-dev pkg-config libclang-dev -y
- name: Publish
run: |
cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
cd multiaddr && cargo publish --dry-run
cd secio && cargo publish --dry-run
cd yamux && cargo publish --dry-run
cd tentacle && cargo publish --dry-run