-
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 1.1 KB
/
create-release.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
46
name: Publish release
on:
pull_request:
types:
- closed
branches:
- main
permissions:
contents: write
id-token: write
jobs:
create-tag:
name: Create tag
runs-on: ubuntu-latest
if:
github.event.pull_request.merged == true &&
contains(github.event.pull_request.labels.*.name, 'new-release')
outputs:
next-version: ${{ steps.get-next-version.outputs.next-version }}
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Get tag name
id: get-next-version
run: |
branch_name="${{ github.event.pull_request.head.ref }}"
next_version=$(echo $branch_name | sed 's/version\///')
echo "next-version=$next_version" >> $GITHUB_OUTPUT
- name: Create tag
run: |
git tag "${{ env.NEXT_VERSION }}"
env:
NEXT_VERSION: ${{ steps.get-next-version.outputs.next-version }}
- name: Push tag to origin
run: git push origin "${{ env.NEXT_VERSION }}"
env:
NEXT_VERSION: ${{ steps.get-next-version.outputs.next-version }}