-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (38 loc) · 1.09 KB
/
release.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
name: Publish
on:
release:
types: [published]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: "https://registry.npmjs.org"
- name: Checkout code
uses: actions/checkout@v3
- name: Tag the repository
id: tag
run: |
TAG=v$(date -Iseconds | sed 's/[T:\+]/-/g')
echo "$TAG"
echo "tag=$TAG" >> $GITHUB_OUTPUT
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git tag -a $TAG -m "Published version $TAG" ${GITHUB_SHA}
git push origin $TAG
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create a release on GitHub
uses: softprops/action-gh-release@v1
with:
files: dist/*
tag_name: ${{ steps.tag.outputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}