We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c12583 + 00a9179 commit d9a8377Copy full SHA for d9a8377
.github/workflows/nightly-update.yaml
@@ -47,12 +47,18 @@ jobs:
47
if: steps.latest.outputs.latest != steps.current.outputs.current
48
run: |
49
tag=${{ steps.latest.outputs.latest }}
50
+ echo "TAG=$tag" >> $GITHUB_ENV
51
aztec-up -v ${tag#v}
52
53
- name: Run yarn update
54
55
run: yarn update
56
57
+ - name: Update tests workflow version
58
+ if: steps.latest.outputs.latest != steps.current.outputs.current
59
+ run: |
60
+ sed -i "s/VERSION=[0-9.]*/VERSION=${TAG#v}/" .github/workflows/tests.yaml
61
+
62
- name: Clean up temporary files
63
64
run: rm -f tmp.sh
0 commit comments