Skip to content

Hierarchie and visibility #25

Hierarchie and visibility

Hierarchie and visibility #25

Workflow file for this run

name: Rust
on:
push:
schedule:
- cron: '0 3 * * *'
workflow_dispatch:
inputs:
bump:
type: choice
options:
- ''
- patch
- minor
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make
publish:
if: "${{ inputs.bump }}"
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cargo set-version
run: cargo install cargo-edit
- name: Bump
run: |
git config user.name "GitHub Actions"
git config user.email "<>"
cargo set-version --package jgd --bump ${{ inputs.bump }}
git commit --all -m "v${{ inputs.bump }}"
git tag "v${{ inputs.bump }}"
- name: Publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish --dry-run