-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (41 loc) · 1.16 KB
/
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
name: Release
on:
workflow_run:
workflows: ["CD"]
types:
- completed
branches:
- main
jobs:
release:
name: 🚀 Release
if: ${{ (github.event.workflow_run.conclusion == 'success') && (github.repository == 'falsepopsky/thetvdb') }}
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- name: Checkout repo
uses: actions/checkout@v4.1.1
- name: Setup pnpm
uses: pnpm/action-setup@v2.4.0
with:
version: 8.9.2
- name: Setup Node
uses: actions/setup-node@v3.8.1
with:
node-version-file: ".nvmrc"
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Create Release Pull Request
uses: changesets/action@v1.4.5
with:
title: "chore(release): new @untidy/thetvdb version"
commit: "chore(release): publish new version"
publish: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true