-
Notifications
You must be signed in to change notification settings - Fork 3
90 lines (80 loc) · 2.88 KB
/
bump-version-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
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
name: Bump version & Publish
on:
workflow_dispatch:
inputs:
config:
description: 'The config for which to create a new version'
required: true
type: choice
options:
- react-animation
- react-transition-presence
- core-transition-component
- muban-storybook-addon-transition
- muban-transition-component
version:
description: 'Semver type of new version (major / minor / patch / prerelease)'
required: true
type: choice
options:
- major
- minor
- patch
- prerelease
prereleaseId:
description: 'Prerelease id (when chosen "prerelease")'
required: false
type: choice
options:
- select-option-if-prerelease
- alpha
- beta
- rc
jobs:
bump-version:
runs-on: ubuntu-latest
concurrency: publish
permissions:
contents: read
id-token: write
steps:
- name: Check out source
uses: actions/checkout@v3
with:
ssh-key: ${{secrets.DEPLOY_KEY}}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
env:
GSAP_TOKEN: ${{ secrets.GSAP_TOKEN }}
run: |
npm config set //npm.greensock.com/:_authToken=$GSAP_TOKEN
npm config set @gsap:registry=https://npm.greensock.com
npm ci
- name: Setup Git
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Build dependencies
if: github.event.inputs.config == 'react-transition-presence'
run: |
npm run build -w packages/react-animation
- name: Build
run: |
npm run build -w packages/${{ github.event.inputs.config }}
- name: Bump version
run: |
npm version ${{ github.event.inputs.version }} -w packages/${{ github.event.inputs.config }} --no-git-tag-version --preid ${{ github.event.inputs.prereleaseid }}
git add .
git commit -m "Publish ${{ github.event.inputs.config }} v$(npm pkg get version --prefix packages/${{ github.event.inputs.config }} | tr -d '"')" --no-verify
git tag @mediamonks/${{ github.event.inputs.config }}@$(npm pkg get version --prefix packages/${{ github.event.inputs.config }} | tr -d '"') -m "${{ github.event.inputs.config }} v$(npm pkg get version --prefix packages/${{ github.event.inputs.config }} | tr -d '"')"
- name: Publish
run: |
npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN
npm publish -w packages/${{ github.event.inputs.config }} --provenance
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push latest version
run: git push origin main --follow-tags