forked from sickmartian/quick_simplenote
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (44 loc) · 1.59 KB
/
create-release.yaml
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
name: Create Release and Tag on Merge
on:
push:
# pull_request:
# types: [closed]
jobs:
create-release:
# if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'master'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
tag_prefix: "st4-"
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Check release output
run: |
echo tag_version.output: "${{ steps.tag_version.outputs }}"
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
# - name: Set up Git
# run: |
# git config --global user.name "github-actions[bot]"
# git config --global user.email "github-actions[bot]@users.noreply.github.com"
# - uses: paulhatch/[email protected]
# id: generate-version
# with:
# tag_prefix: "st4-"
# major_pattern: "(MAJOR)"
# minor_pattern: "(MINOR)"
# version_format: "st4-${major}.${minor}.${patch}"
# - name: Create Release
# id: create-release
# uses: undergroundwires/[email protected]
# with:
# git-token: ${{ secrets.ACTION_TOKEN }}
# release-token: ${{ secrets.ACTION_TOKEN }}