publish #65
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
name: publish | |
on: | |
workflow_dispatch: | |
inputs: | |
fav_derive: | |
description: "publish fav_derive" | |
type: boolean | |
default: false | |
fav_core: | |
description: "publish fav_core" | |
type: boolean | |
default: false | |
fav_utils: | |
description: "publish fav_utils" | |
type: boolean | |
default: false | |
fav_cli: | |
description: "publish fav_cli" | |
type: boolean | |
default: false | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install cargo components | |
run: rustup component add clippy | |
- name: login to crates.io | |
run: cargo login ${{ secrets.CRATESIO }} | |
- name: publish fav_derive | |
if: ${{ inputs.fav_derive }} | |
run: .github/scripts/publish_test.sh fav_derive && .github/scripts/publish.sh fav_derive | |
- name: publish fav_core | |
if: ${{ inputs.fav_core }} | |
run: .github/scripts/publish_test.sh fav_core && .github/scripts/publish.sh fav_core | |
- name: publish fav_utils | |
if: ${{ inputs.fav_utils }} | |
run: .github/scripts/publish_test.sh fav_utils && .github/scripts/publish.sh fav_utils | |
- name: publish fav_cli | |
if: ${{ inputs.fav_cli }} | |
run: .github/scripts/publish_test.sh fav_cli && .github/scripts/publish.sh fav_cli |