-
Notifications
You must be signed in to change notification settings - Fork 13
48 lines (39 loc) · 1.23 KB
/
upgrade-infrastructure.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
name: Upgrade @roataway/infrastructure-data
on: repository_dispatch
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: 13.x
- name: Cache node modules
uses: actions/cache@v1
env:
cache-name: cache-node-modules
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Upgrade @roataway/infrastructure-data
run: |
npm uni @roataway/infrastructure-data
npm i @roataway/infrastructure-data
- name: Commit and push
run: |
git config user.email "[email protected]"
git config user.name "GitHub Action"
git commit -am "chore: upgrade @roataway/infrastructure-data"
- name: Push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tags: true