forked from rust-bio/rust-htslib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: checkout before release-please
- Loading branch information
1 parent
9c6db30
commit d320844
Showing
1 changed file
with
16 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,22 @@ jobs: | |
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Install stable toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
|
||
- name: Install system dependencies | ||
run: | | ||
sudo apt-get install --yes zlib1g-dev libbz2-dev musl musl-dev musl-tools clang libc6-dev | ||
- uses: Swatinem/[email protected] | ||
|
||
- uses: GoogleCloudPlatform/release-please-action@v2 | ||
id: release_sys | ||
with: | ||
|
@@ -25,24 +41,6 @@ jobs: | |
bump-minor-pre-major: Yes | ||
monorepo-tags: true | ||
|
||
- uses: actions/checkout@v2 | ||
if: ${{ steps.release_main.outputs.release_created || steps.release_sys.outputs.release_created }} | ||
|
||
- name: Install stable toolchain | ||
if: ${{ steps.release_main.outputs.release_created || steps.release_sys.outputs.release_created }} | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
|
||
- name: Install system dependencies | ||
if: ${{ steps.release_main.outputs.release_created || steps.release_sys.outputs.release_created }} | ||
run: | | ||
sudo apt-get install --yes zlib1g-dev libbz2-dev musl musl-dev musl-tools clang libc6-dev | ||
- uses: Swatinem/[email protected] | ||
if: ${{ steps.release_main.outputs.release_created || steps.release_sys.outputs.release_created }} | ||
|
||
- uses: katyo/publish-crates@v1 | ||
if: ${{ steps.release_main.outputs.release_created || steps.release_sys.outputs.release_created }} | ||
with: | ||
|