mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 04:39:16 +00:00
Try to fix auto-publishing of lib crates
This commit is contained in:
parent
85736de3bc
commit
7cb0cfa3aa
@ -1,4 +1,4 @@
|
|||||||
name: publish
|
name: autopublish
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: # We can add version input when 1.0 is released and scheduled releases are removed
|
workflow_dispatch: # We can add version input when 1.0 is released and scheduled releases are removed
|
||||||
|
|
||||||
@ -25,7 +25,7 @@ jobs:
|
|||||||
- name: Install cargo-workspaces
|
- name: Install cargo-workspaces
|
||||||
run: cargo install cargo-workspaces
|
run: cargo install cargo-workspaces
|
||||||
|
|
||||||
- name: Release
|
- name: Publish Crates
|
||||||
env:
|
env:
|
||||||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
||||||
PATCH: ${{ github.run_number }}
|
PATCH: ${{ github.run_number }}
|
35
.github/workflows/publish-libs.yaml
vendored
Normal file
35
.github/workflows/publish-libs.yaml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
name: publish-libs
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'lib/**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish-libs:
|
||||||
|
name: publish
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
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"
|
||||||
|
# Remove r-a crates from the workspaces so we don't auto-publish them as well
|
||||||
|
sed -i 's/ "crates\/\*"//' ./Cargo.toml
|
||||||
|
cargo workspaces publish --yes --exact --from-git --no-git-commit --allow-dirty
|
Loading…
Reference in New Issue
Block a user