-
-
Notifications
You must be signed in to change notification settings - Fork 3
31 lines (27 loc) · 995 Bytes
/
release.yaml
File metadata and controls
31 lines (27 loc) · 995 Bytes
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
name: Release
on:
push:
branches:
- main
jobs:
build-tag-release:
name: Build, tag, and release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup release please
uses: googleapis/release-please-action@v3
id: release
with:
release-type: node
package-name: conventional-commits-pr-action
- name: Tag major version
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git tag -d v${{ steps.release.outputs.major }}
git push origin :v${{ steps.release.outputs.major }} || true
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}"
git push origin v${{ steps.release.outputs.major }}