rust-analyzer/.github/workflows/publish-libs.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
935 B
YAML
Raw Normal View History

name: publish-libs
on:
workflow_dispatch:
push:
branches:
2023-05-07 09:40:37 +00:00
- master
paths:
2023-05-07 09:40:37 +00:00
- "lib/**"
jobs:
publish-libs:
name: publish
runs-on: ubuntu-latest
steps:
- name: Checkout repository
2024-02-16 12:23:10 +00:00
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
run: rustup update --no-self-update stable
- name: Install cargo-workspaces
run: cargo install cargo-workspaces
- name: Publish Crates
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
shell: bash
run: |
git config --global user.email "runner@gha.local"
git config --global user.name "GitHub Action"
2024-08-12 10:45:38 +00:00
# Only publish the crates under lib/
sed -i 's|^members = .*$|members = ["lib/*"]|' Cargo.toml
cargo workspaces publish --yes --exact --from-git --no-git-commit --allow-dirty