We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05a1418 commit 8db3120Copy full SHA for 8db3120
.github/workflows/deploy-docker.yml
@@ -24,12 +24,10 @@ jobs:
24
with:
25
node-version: 18.20.2
26
cache: 'npm'
27
- - name: Install dependencies
28
- run: npm install
29
- - name: Build
30
- run: npm run build
+ - name: Install dependencies && build
+ run: npm install && npm run build
31
- name: Push Docker image
32
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v6
33
34
context: .
35
tags: quay.io/subscan-explorer/subscan-essentials-ui:sha-${{ steps.short-sha.outputs.sha }}-${{ github.run_number }}
0 commit comments