generated from react18-tools/turborepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (45 loc) · 1.59 KB
/
manual-publish.yml
File metadata and controls
49 lines (45 loc) · 1.59 KB
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
name: Manually publish to NPM - Apply changeset in the workflow.
# publish only when package json has changed - assuming version upgrade
on:
workflow_dispatch:
jobs:
publish:
if: github.event.repository.owner.login == 'tiny-md'
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- name: Setup Git
run: |
git config --global user.name "mayank1513"
git config --global user.email "mayank.srmu@gmail.com"
# fail and not publish if any of the unit tests are failing
- name: Test
run: pnpm test
working-directory: ./lib
- name: clean up working directory
run: git status && git clean -f -d && git status
- name: Copy Readme file
run: cp ./README.md ./lib # todo: uncomment this line while rebranding
- name: Apply changesets, publish and create release, branches and tags
run: pnpm tsx ./scripts/manual-publish.ts
env:
BRANCH: ${{ github.ref_name }}
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}