forked from apimatic/apimatic-js-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (52 loc) · 1.88 KB
/
release-semantic-versioning.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
name: Release Semantic Versioning
run-name: Publishing Package with Semantic Versioning
on:
workflow_dispatch:
jobs:
release:
name: Publish the npm package
runs-on: ubuntu-latest
environment: Production
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.ref_name }}
fetch-depth: 0 # Ensure the full history is fetched to push changes back
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '19'
- name: Install dependencies and build
run: |
yarn install --frozen-lockfile
yarn build
- name: Configure Git and create release branch for version update
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git checkout -b ci-version-update
git push origin ci-version-update
- name: Configure NPM registry
run: npm config set registry 'https://registry.npmjs.org/'
- name: Authenticate with NPM
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Run semantic-release with Lerna
id: release
run: |
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push the version change
if: steps.release.conclusion == 'success'
uses: CasperWA/push-protected@v2
with:
token: ${{ secrets.PAT }}
branch: ${{ github.ref_name }}
- name: Delete the intermediate branch
if: steps.release.conclusion == 'success'
run: |
git branch -D ci-version-update &>/dev/null || true
git push origin :ci-version-update &>/dev/null || true