-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (64 loc) · 2.58 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
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
---
name: Release
on:
push:
branches:
- main
jobs:
please:
name: Please
runs-on: ubuntu-latest
steps:
- id: release
name: Release
uses: google-github-actions/release-please-action@v3
with:
release-type: node
package-name: "@stordco/actions-sync"
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
extra-files: README.md
- if: steps.release.outputs.release_created
name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ steps.release.outputs.tag_name }}
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
persist-credentials: true
- if: steps.release.outputs.release_created
name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- if: steps.release.outputs.release_created
id: cache
name: Cache node_modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-16-nodemodules-${{ hashFiles('package-lock.json') }}
- if: steps.release.outputs.release_created && steps.cache.outputs.cache-hit != 'true'
name: Install Dependencies
run: npm ci
- if: steps.release.outputs.release_created
name: Build
run: npm run build
- if: steps.release.outputs.release_created
name: Tag
run: |
git config user.name stord-engineering-account
git config user.email [email protected]
git add -f dist
git commit --amend --no-edit
git tag -d v${{ steps.release.outputs.major }} || true
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git tag -d latest || true
git push origin :v${{ steps.release.outputs.major }} || true
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git push origin :latest || true
git tag -a v${{ steps.release.outputs.major }} -m "chore(main): release ${{ steps.release.outputs.major }}"
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "chore(main): release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}"
git tag -a latest -m "chore(main): release ${{ steps.release.outputs.tag_name }}"
git push origin v${{ steps.release.outputs.major }}
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
git push origin latest