Skip to content

Commit 457c040

Browse files
committed
chore(deps): node version 22
1 parent 45e27cf commit 457c040

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/docker-image-production.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ jobs:
1515
- name: check out the repo
1616
uses: actions/checkout@master
1717

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+
1828
- name: log in to docker hub
1929
uses: docker/login-action@v3
2030
with:
@@ -36,7 +46,9 @@ jobs:
3646
uses: docker/build-push-action@v6
3747
with:
3848
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/
4052
push: true
4153
tags: ${{ steps.meta.outputs.tags }}
4254

0 commit comments

Comments
 (0)