We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45e27cf commit 457c040Copy full SHA for 457c040
.github/workflows/docker-image-production.yml
@@ -15,6 +15,16 @@ jobs:
15
- name: check out the repo
16
uses: actions/checkout@master
17
18
+ - name: Setup Node.js
19
+ uses: actions/setup-node@v4
20
+ with:
21
+ node-version: '22.x'
22
+ cache: 'npm'
23
+ cache-dependency-path: package-lock.json
24
+
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
- name: log in to docker hub
29
uses: docker/login-action@v3
30
with:
@@ -36,7 +46,9 @@ jobs:
36
46
uses: docker/build-push-action@v6
37
47
38
48
file: ./Dockerfile
39
- build-args: VUE_APP_API_URL=https://api.gendercomics.net/
49
+ build-args: |
50
+ NODE_VERSION=22
51
+ VUE_APP_API_URL=https://api.gendercomics.net/
40
52
push: true
41
53
tags: ${{ steps.meta.outputs.tags }}
42
54
0 commit comments