-
Notifications
You must be signed in to change notification settings - Fork 0
96 lines (82 loc) · 2.72 KB
/
release_package.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Release package
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
# Checkout project repository
- name: Checkout
uses: actions/checkout@v3
# Setup Node.js environment
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm install
# Tests
- name: Run tests
run: npm test
env:
APITOOLKIT_KEY: ${{ secrets.APITOOLKIT_KEY }}
- run: npm run build
# Configure Git
- name: Git configuration
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "GitHub Actions"
# Extract version from tag
- name: Get version from tag
run: echo "NEW_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
# Determine if it's a pre-release
- name: Check if pre-release
run: |
if [[ ${{ env.NEW_VERSION }} == *"-"* ]]; then
echo "RELEASE_TAG=beta" >> $GITHUB_ENV
else
echo "RELEASE_TAG=latest" >> $GITHUB_ENV
fi
# Bump version in package.json
- name: Bump version
run: npm version ${{ env.NEW_VERSION }} --no-git-tag-version
- name: Create and checkout temporary branch
run: |
git branch temp-branch
git checkout temp-branch
# Commit changes
- name: Commit Package.json changes
run: |
git add "package.json"
git commit -m "chore: release ${{ env.NEW_VERSION }}"
# Push repository changes
- name: Push changes to repository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git push origin temp-branch:master
# Publish version to npm
- name: Publish
run: yarn publish --verbose --access public --tag ${{ env.RELEASE_TAG }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# Read version changelog
- id: get-changelog
name: Get version changelog
uses: superfaceai/release-changelog-action@v1
with:
path-to-changelog: CHANGELOG.md
version: ${{ env.NEW_VERSION }}
operation: read
# Update GitHub release with changelog
- name: Update GitHub release documentation
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.NEW_VERSION }}
body: ${{ steps.get-changelog.outputs.changelog }}
prerelease: ${{ startsWith(github.event.inputs.release-type, 'pre') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}