-
Notifications
You must be signed in to change notification settings - Fork 6
43 lines (38 loc) · 1.25 KB
/
bump.yaml
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
name: Bump the versions
on:
workflow_dispatch:
inputs:
version:
description: 'What to bump?'
required: true
default: 'patch'
type: choice
options:
- 'patch'
- 'minor'
- 'major'
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Needed for "yarn version" to work.
token: ${{ secrets.DD_INFRA_BOT_GH_ACTIONS_TOKEN }} # Needed for the push at the end of the action.
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- run: yarn install
- run: yarn version:all ${{ inputs.version }}
- run: git add .
- run: |
TAG_NAME="v$(yarn workspace @datadog/webpack-plugin info @datadog/webpack-plugin --json | jq -r '.children.Version')"
GIT_AUTHOR_NAME='dd-infra-bot',
GIT_COMMITTER_NAME='dd-infra-bot',
GIT_AUTHOR_EMAIL='[email protected]',
GIT_COMMITTER_EMAIL='[email protected]',
git config --global user.email $GIT_AUTHOR_EMAIL
git config --global user.name $GIT_AUTHOR_NAME
git commit -m $TAG_NAME
git tag -a $TAG_NAME -m $TAG_NAME
git push --follow-tags