-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (32 loc) · 1.02 KB
/
tag-and-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
# NOTE: taken from https://github.com/MylesBorins/node-osc/blob/main/.github/workflows/bump-version.yml
name: Tag & Publish
on:
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out source
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
- name: Install npm packages
run: npm ci
- name: Setup Git
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Create tag
run: |
git tag @muban/eslint-config@$(npm pkg get version --prefix configs/base | tr -d '"') -m "configs-base v$(npm pkg get version --prefix configs/base | tr -d '"')"
- name: Publish
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish -w configs/base
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push tag
run: git push origin main --follow-tags