-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
84 lines (72 loc) · 2.17 KB
/
publish.yml
File metadata and controls
84 lines (72 loc) · 2.17 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Publish yew package(s)
permissions:
contents: write
on:
workflow_dispatch:
inputs:
level:
description: "Version Level major|minor|patch"
required: true
type: choice
options:
- patch
- minor
- major
packages:
description: "List of packages to publish (space separated)"
required: true
type: string
jobs:
publish:
name: Publish yew
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v6
with:
token: "${{ secrets.YEWTEMPBOT_TOKEN }}"
fetch-depth: 0
- name: Config Git
uses: oleksiyrudenko/gha-git-credentials@v2.1.2
with:
token: "${{ secrets.YEWTEMPBOT_TOKEN }}"
- name: Setup toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Install cargo binary dependencies
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-release
version: =0.23.1
- name: Cargo login
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
- name: Build command
shell: bash
env:
PACKAGES: ${{ github.event.inputs.packages }}
run: |
output=""
for pkg in ${{ github.event.inputs.packages }}
do
output+="--package $pkg "
done
echo "pkg=$output" >> $GITHUB_ENV
- name: Release yew
run: cargo release ${{ github.event.inputs.level }} --execute --no-confirm ${{ env.pkg }}
- name: Get tag
id: gettag
uses: WyriHaximus/github-action-get-previous-tag@v2
- name: Create a version branch
if: github.event.inputs.level != 'patch'
uses: peterjgrainger/action-create-branch@v3.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: ${{ steps.gettag.outputs.tag }}
- name: Create a Release
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.YEWTEMPBOT_TOKEN }}
tag_name: ${{ steps.gettag.outputs.tag }}
body: ${{ steps.changelog.outputs.stdout }}