-
-
Notifications
You must be signed in to change notification settings - Fork 6
51 lines (46 loc) · 1.21 KB
/
pwa-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
47
48
49
50
51
name: PWA Release
on:
push:
tags:
- "pwa@*"
jobs:
ci:
uses: ./.github/workflows/ci.yml
permissions:
contents: read
actions: read
security-events: write
release:
needs: ci
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Push to branch `release`
run: |
git branch release -f
git push origin release -f
- name: Conventional Changelog Action
uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
skip-git-pull: "true"
tag-prefix: "pwa@"
output-file: "false"
git-branch: "main"
skip-tag: "true"
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.changelog.outputs.clean_changelog }}
draft: false
prerelease: false