Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit f0413f8

Browse files
committed
Set node version
1 parent 9a615f2 commit f0413f8

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/push-and-package.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Release Containers
22

33
on:
4-
#repository_dispatch:
54
push:
65
tags:
76
- 'v*'
@@ -38,7 +37,12 @@ jobs:
3837
uses: azure/login@v1
3938
with:
4039
creds: ${{ secrets.AZ_ACR_CREDS }}
41-
40+
41+
- name: Setup node
42+
uses: actions/setup-node@v2
43+
with:
44+
node-version: 14
45+
4246
- name: Build and push
4347
id: build_and_push
4448
run: |
@@ -72,6 +76,11 @@ jobs:
7276
id: get_tag_name
7377
run: echo "::set-output name=tag::$(echo "${{ github.ref }}" | grep -oP 'refs/tags/\K(.+)')"
7478

79+
- name: Setup node
80+
uses: actions/setup-node@v2
81+
with:
82+
node-version: 14
83+
7584
- name: Update Dockerfile common script sources and re-tag
7685
id: update_script_source
7786
run: |

0 commit comments

Comments
 (0)