forked from foxglove/comlink
-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (46 loc) · 1.45 KB
/
bump-version.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
name: Auto Bump Version
on:
push:
branches:
- main # Trigger on push to main branch
jobs:
bump:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.LICHTBLICK_GITHUB_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- run: corepack enable
- name: Cache yarn dependencies
uses: actions/cache@v4
with:
path: |
**/node_modules
~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --mode skip-build
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: Set up Git
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
- name: Bump version in root package.json
run: yarn version --new-version patch --no-git-tag-version
- name: Commit version bumps
id: commit_version_bumps
run: |
git add package.json yarn.lock
git commit -m "chore: bump versions in root package.json [skip actions]"
echo "commit_sha=$(git rev-parse HEAD)" >> $GITHUB_ENV
- name: Push changes
run: |
git push origin main