-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (41 loc) · 1.31 KB
/
test.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
name: on merging to default branch
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set global attributes
run: |
git config --global user.email "[email protected]"
git config --global user.name "Benedict Steven"
git remote set-url origin https://x-access-token:${{ secrets.TOKEN }}@github.com/${{ github.repository }}
- name: install jq
run: yarn add jq
- name: get version
run: |
PACKAGE_VERSION=$(cat ./package.json | jq '.version' | tr -d '"')
echo "::set-output name=PACKAGE_VERSION::$(cat ./package.json | jq '.version' | tr -d '"')"
echo $PACKAGE_VERSION
id: version
- name: Build
run: |
yarn run all
- name: bump-version
id: bump_version
uses: ./
with:
GITHUB_TOKEN: ${{secrets.TOKEN}}
PACKAGE_VERSION: ${{ steps.version.outputs.PACKAGE_VERSION }}
DELETE_BRANCH: false
CHANGELOG_PATH: ./CHANGELOG.md
PACKAGE_JSON_PATH: ./package.json
- name: update develop branch
run: |
git add package.json
git add CHANGELOG.md
git add dist
git commit -m "Skip CI"
git push