File tree 1 file changed +0
-49
lines changed
1 file changed +0
-49
lines changed Original file line number Diff line number Diff line change 16
16
matrix :
17
17
os :
18
18
- windows-2019
19
- - ubuntu-20.04
20
- - macos-10.15
21
19
node :
22
20
- 14 # installed on the images
23
21
pnpm :
72
70
./exe
73
71
./dist
74
72
retention-days : 1
75
-
76
- Docker :
77
- runs-on : ${{ matrix.os }}
78
- strategy :
79
- matrix :
80
- os :
81
- - ubuntu-20.04
82
- node :
83
- - 14
84
- pnpm :
85
- - 6
86
- cache_reset_counter :
87
- - 0
88
- steps :
89
- - uses : actions/checkout@v2
90
- with :
91
- submodules : true
92
-
93
- - name : Cache
94
- uses : actions/cache@v2
95
- with :
96
- path : |
97
- ~/.pnpm-store
98
- D:\.pnpm-store
99
- key : " setupcpp-docker-cache-OS:${{ matrix.os }}-node:${{ matrix.node }}-pnpm:${{ matrix.pnpm }}-${{ hashFiles('./.npmrc') }}-deps:${{ hashFiles('./package.json') }}-${{ matrix.cache_reset_counter }}"
100
- restore-keys : |
101
- "setupcpp-docker-cache-OS:${{ matrix.os }}"
102
- - name : Setup Node
103
- uses : actions/setup-node@v2
104
- with :
105
- node-version : ${{ matrix.node }}
106
-
107
- - name : Setup Pnpm
108
- uses : pnpm/action-setup@v2
109
- with :
110
- version : ${{ matrix.pnpm }}
111
-
112
- - name : Install and build
113
- run : |
114
- pnpm install
115
-
116
- - name : Build
117
- id : docker_build
118
- run : |
119
- pnpm build.docker
120
- env :
121
- ACTIONS_ALLOW_UNSECURE_COMMANDS : true
You can’t perform that action at this time.
0 commit comments