]> git.lizzy.rs Git - rust.git/blob - .github/workflows/publish.yml
Auto merge of #12127 - dtolnay-contrib:checkoutv3, r=lnicola
[rust.git] / .github / workflows / publish.yml
1 name: publish
2 on:
3   workflow_dispatch: # We can add version input when 1.0 is released and scheduled releases are removed
4
5 #   schedule:
6 #     - cron: "0 0 * * *" # midnight UTC
7
8   push:
9     branches:
10       - release
11
12 jobs:
13   publish:
14     name: publish
15     runs-on: ubuntu-latest
16     steps:
17       - name: Checkout repository
18         uses: actions/checkout@v3
19         with:
20           fetch-depth: 0
21
22       - name: Install Rust toolchain
23         uses: actions-rs/toolchain@v1
24         with:
25           toolchain: stable
26           profile: minimal
27           override: true
28
29       - name: Install cargo-workspaces
30         uses: actions-rs/install@v0.1
31         with:
32           crate: cargo-workspaces
33
34       - name: Release
35         env:
36           CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
37           PATCH: ${{ github.run_number }}
38         shell: bash
39         run: |
40           git config --global user.email "runner@gha.local"
41           git config --global user.name "Github Action"
42           rm Cargo.lock
43           cargo workspaces rename ra_ap_%n
44           find crates/rust-analyzer -type f -name '*.rs' -exec sed -i 's/rust_analyzer/ra_ap_rust_analyzer/g' {} +
45           cargo workspaces publish --yes --force '*' --exact --no-git-commit --allow-dirty --skip-published custom 0.0.$PATCH