-
-
Notifications
You must be signed in to change notification settings - Fork 34
31 lines (27 loc) · 753 Bytes
/
release.yml
File metadata and controls
31 lines (27 loc) · 753 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:
workflow_run:
workflows: ['CI']
types: [completed]
branches: [main]
permissions:
contents: write
pull-requests: write
jobs:
release:
if: github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0
- name: Create Release
uses: wgtechlabs/[email protected] # v1.6.0
with:
github-token: ${{ secrets.GH_PAT }}
monorepo: 'true'
monorepo-root-release: 'true'
unified-version: 'false'
change-detection: 'both'
per-package-changelog: 'true'
root-changelog: 'true'