-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 946 Bytes
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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