-
Notifications
You must be signed in to change notification settings - Fork 74
56 lines (47 loc) · 1.37 KB
/
publish.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
52
53
54
55
56
name: Publish to NPM
on:
workflow_dispatch:
inputs:
dry-run:
description: 'Do not touch or write anything, but show the commands'
default: true
type: boolean
jobs:
release-it:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14.17.3
- name: Remove .npmrc
run: |
rm -f .npmrc
shell: bash
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11.5
- name: Install dependencies
run: |
npm install --agora_electron_publish_to_npm
shell: bash
- name: Setup NPM auth token
run: |
npm set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }}
- name: Dry Run Release
if: ${{ inputs.dry-run }}
run: |
npm publish --tag customer_hotfix --verbose --dry-run
- name: NPM Publish
if: ${{ !inputs.dry-run }}
run: |
git config --global user.email "${{ secrets.GIT_EMAIL }}"
git config --global user.name "${{ secrets.GIT_USERNAME }}"
npm publish --tag customer_hotfix --verbose