-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (40 loc) · 1.16 KB
/
create-pre-release.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
name: Create pre-release
"on":
pull_request:
types:
- opened
jobs:
build:
if: ${{ github.actor != 'dependabot'}}
runs-on: ubuntu-latest
outputs:
release: ${{ steps.rcrelease.outputs.release }}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2.1.2
with:
node-version: 12.x
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: npm-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
npm-${{ env.cache-name }}-${{ matrix.node-version }}-
npm-${{ env.cache-name }}-
npm-
- run: npm install
- name: Tag a rc release
id: rcrelease
uses: actionsdesk/semver@0.6.0-rc.8
with:
bump: patch
prerelease: withBuildNumber
prelabel: rc