-
Notifications
You must be signed in to change notification settings - Fork 19
45 lines (37 loc) · 1.03 KB
/
examples.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
name: Examples
on:
push:
branches: [main]
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
ref: main
- name: Use Node.js
uses: actions/[email protected]
with:
node-version-file: .nvmrc
- name: Use PNPM
uses: pnpm/[email protected]
with:
version: 7
- name: Setup user
run: |
git config --global user.email [email protected]
git config --global user.name "Action"
- name: Bump version
run: |
git init
cd examples
eval $(echo pnpm add vue-next-select@$(cat ../package.json | head -3 | sed 1,2d | sed 's/^.*\: "//' | sed 's/",$//'))
git add .
git commit -m 'chore(bot): bump vue-next-select' || exit 0
cd ..
- name: Push
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: 'main'
directory: '.'