forked from DataV-Team/DataV-Vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (50 loc) · 1.51 KB
/
release-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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: release-test
on:
push:
branches: ['test/**']
workflow_dispatch:
jobs:
release-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16.18.1'
registry-url: https://registry.npmjs.org/
- run: echo '//registry.npmjs.org/:_authToken=${{ secrets.NPM_ACCESS_TOKEN }}' > ${{ github.workspace }}/.npmrc
- name: Cache dependencies
uses: actions/cache@v2
id: yarn-cache
with:
path: |
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
- name: Check
run: yarn run check
- name: Generate Test Version
run: yarn run version:test
- name: Build
run: yarn run build
- name: Publish
run: npm publish --tag test
- name: Read Version
id: version
uses: ashley-taylor/[email protected]
with:
path: ./package.json
property: version
- name: Commit Test Version
uses: EndBug/add-and-commit@v9
with:
default_author: github_actor
message: 'chore: release test version v${{ steps.version.outputs.value }}'
push: true