File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
integration-tests/js-compute/fixtures/object-store Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 22
22
uses : fastly/compute-actions/setup@v4
23
23
with :
24
24
token : ${{ inputs.github-token }}
25
- cli_version : ' 7.0.0 '
25
+ cli_version : ' 7.0.1 '
26
26
- name : Download Engine
27
27
uses : actions/download-artifact@v3
28
28
with :
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ jobs:
214
214
uses : fastly/compute-actions/setup@v4
215
215
with :
216
216
token : ${{ secrets.GITHUB_TOKEN }}
217
- cli_version : ' 7.0.0 '
217
+ cli_version : ' 7.0.1 '
218
218
219
219
- name : Restore Viceroy from cache
220
220
uses : actions/cache@v3
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129
129
restore-keys : engine-cargo-${{ runner.os }}-${{ runner.arch }}-
130
130
131
131
- run : yarn install --immutable
132
-
132
+
133
133
- run : yarn build
134
134
135
135
- run : npm publish
@@ -143,8 +143,8 @@ jobs:
143
143
uses : fastly/compute-actions/setup@v2
144
144
with :
145
145
token : ${{ secrets.GITHUB_TOKEN }}
146
- cli_version : ' 7.0.0 '
147
-
146
+ cli_version : ' 7.0.1 '
147
+
148
148
- run : yarn deploy
149
149
env :
150
150
FASTLY_API_TOKEN : ${{secrets.FASTLY_API_TOKEN}}
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ if (!STORE_ID) {
52
52
STORE_ID = ( await STORE_ID . json ( ) ) . id
53
53
}
54
54
55
- let VERSION = String ( await $ `fastly service-version clone --version=latest --token $FASTLY_API_TOKEN` ) . trim ( )
55
+ let VERSION = String ( await $ `fastly service-version clone --quiet -- version=latest --token $FASTLY_API_TOKEN` ) . trim ( )
56
56
VERSION = VERSION . match ( / \d + $ / ) ?. [ 0 ]
57
57
58
58
let SERVICE_ID = await $ `fastly service describe --json --quiet --token $FASTLY_API_TOKEN`
@@ -68,4 +68,4 @@ await fetch(`https://api.fastly.com/service/${SERVICE_ID}/version/${VERSION}/res
68
68
} )
69
69
await $ `fastly service-version activate --version=${ VERSION } --quiet --token $FASTLY_API_TOKEN`
70
70
71
- console . log ( `Set up has finished! Took ${ ( Date . now ( ) - startTime ) / 1000 } seconds to complete` ) ;
71
+ console . log ( `Set up has finished! Took ${ ( Date . now ( ) - startTime ) / 1000 } seconds to complete` ) ;
You can’t perform that action at this time.
0 commit comments