-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (32 loc) · 925 Bytes
/
tag.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
name: Tag
on:
workflow_run:
workflows: ["CI"]
branches: [main]
types:
- completed
jobs:
extract-crate-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Export Crate Package Version
run: echo "VERSION=$(cargo metadata --format-version=1 --no-deps | jq -r '.packages[0].version')" >> $GITHUB_OUTPUT
id: export_crate_version
outputs:
VERSION: ${{ steps.export_crate_version.outputs.VERSION }}
tag:
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 20
needs: [extract-crate-version]
env:
VERSION: ${{ needs.extract-crate-version.outputs.VERSION }}
steps:
- uses: actions/checkout@v4
- name: Bump version and push tag
uses: anothrNick/github-tag-action@master
env:
CUSTOM_TAG: v${{ env.VERSION }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}