-
Notifications
You must be signed in to change notification settings - Fork 96
98 lines (85 loc) · 2.63 KB
/
Copy pathpublish.yml
File metadata and controls
98 lines (85 loc) · 2.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Automates crate publishing
# - Specify crate and version from the menu.
# - Launch the job:
# + Updates Cargo.toml with the specified version
# + Commits and pushes the version bump
# + Publishes to crates.io
# + Adds and pushes a git tag "<crate>-v<version>"
name: Release
on:
workflow_dispatch:
inputs:
crate:
description: "Crate to publish"
required: true
type: choice
options:
- client
- logging
- runc
- runc-shim
- shim
- shim-protos
- snapshots
version:
description: "Version to publish (e.g. 0.8.1)"
required: true
type: string
dryrun:
description: "Dry run"
required: false
type: boolean
default: false
jobs:
publish:
name: "Publish ${{ inputs.crate }} v${{ inputs.version }}"
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write
env:
CARGO_FILE: "crates/${{ inputs.crate }}/Cargo.toml"
steps:
- uses: actions/checkout@v7
- name: Validate version
env:
VERSION: ${{ inputs.version }}
run: |
if [[ ! "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9.]+)?$ ]]; then
echo "::error::Invalid version: $VERSION (expected semver, e.g. 0.8.1 or 1.0.0-rc.1)"
exit 1
fi
- name: Update crate version
env:
VERSION: ${{ inputs.version }}
run: sed -i "s/^version = \".*\"/version = \"$VERSION\"/" $CARGO_FILE
- name: Commit version bump
env:
CRATE: ${{ inputs.crate }}
VERSION: ${{ inputs.version }}
run: |
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
git add $CARGO_FILE
if git diff --cached --quiet; then
echo "Version already at v$VERSION, skipping commit"
else
git commit -m "Bump $CRATE to v$VERSION"
fi
- name: Install protobuf
if: ${{ contains(fromJSON('["client","snapshots"]'), inputs.crate) }}
run: |
sudo apt update
sudo apt install protobuf-compiler
- name: Publish on crates.io
run: cargo publish $DRYRUN --manifest-path $CARGO_FILE
env:
DRYRUN: ${{ inputs.dryrun && '--dry-run' || '' }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Push commit and tag
if: ${{ !inputs.dryrun }}
env:
TAG: ${{ inputs.crate }}-v${{ inputs.version }}
run: |
git tag $TAG
git push --atomic origin HEAD $TAG