-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (36 loc) · 1.33 KB
/
release-or-version.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
name: release-or-version
on:
push:
branches: [main]
jobs:
release:
# Basic security: the release job can only be executed from this repo and from the main branch (not a remote thing)
if: ${{ github.repository == 'DaviDevMod/focus-trap' && contains('refs/heads/main',github.ref)}}
name: Release and changelog
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
# To run comparison we need more than the latest commit.
# @link https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
fetch-depth: 0
- name: ♻️ Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: 📥 Monorepo install
uses: ./.github/actions/yarn-nm-install
# @link https://github.com/changesets/action
- name: 🦋 Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: yarn g:release
cwd: ${{ github.workspace }}
title: '[Release] Version packages'
env:
# See https://github.com/changesets/action/issues/147
HOME: ${{ github.workspace }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}