mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-23 05:58:42 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
1.7 KiB
YAML
58 lines
1.7 KiB
YAML
name: On release
|
|
on:
|
|
pull_request:
|
|
types: closed
|
|
branches: [main] # target branch of release PRs
|
|
|
|
jobs:
|
|
info:
|
|
if: github.event.pull_request.merged
|
|
|
|
outputs:
|
|
is-release: ${{ steps.meta.outputs.is-release }}
|
|
crate: ${{ steps.meta.outputs.crates-names }}
|
|
version: ${{ steps.meta.outputs.version-actual }}
|
|
notes: ${{ steps.meta.outputs.notes }}
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- id: meta
|
|
uses: cargo-bins/release-meta@v1
|
|
with:
|
|
event-data: ${{ toJSON(github.event) }}
|
|
extract-notes-under: '### Release notes'
|
|
|
|
tag:
|
|
if: needs.info.outputs.is-release == 'true'
|
|
needs: info
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Push lib release tag
|
|
if: needs.info.outputs.crate != 'cargo-binstall'
|
|
uses: mathieudutour/github-tag-action@v6.1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
custom_tag: ${{ needs.info.outputs.version }}
|
|
tag_prefix: ${{ needs.info.outputs.crate }}-v
|
|
- name: Push cli release tag
|
|
if: needs.info.outputs.crate == 'cargo-binstall'
|
|
uses: mathieudutour/github-tag-action@v6.1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
custom_tag: ${{ needs.info.outputs.version }}
|
|
tag_prefix: v
|
|
- name: Publish to crates.io
|
|
run: |
|
|
cargo publish -p '${{ needs.info.outputs.crate }}'
|
|
env:
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
|
|
package:
|
|
if: needs.info.outputs.is-release == 'true' && needs.info.outputs.crate == 'cargo-binstall'
|
|
needs:
|
|
- info
|
|
- tag
|
|
uses: ./.github/workflows/release-build.yml
|
|
with:
|
|
publish: ${{ toJSON(needs.info.outputs) }}
|