We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8d43e commit 192bed2Copy full SHA for 192bed2
.github/workflows/release.yml
@@ -7,8 +7,6 @@ on:
7
jobs:
8
publish:
9
runs-on: ubuntu-latest
10
- env:
11
- DOCKER_TAG: ${{ github.event.release.tag_name }}
12
steps:
13
- uses: actions/checkout@v2
14
- name: Setup Node.js
@@ -34,6 +32,6 @@ jobs:
34
32
context: .
35
33
platforms: linux/amd64,linux/arm64
36
tags: |
37
- zilliz/attu:${DOCKER_TAG},zilliz/attu:latest
38
- build-args: VERSION=${DOCKER_TAG}
+ zilliz/attu:${{ github.event.release.tag_name }},zilliz/attu:latest
+ build-args: VERSION=${{ github.event.release.tag_name }}
39
push: true
0 commit comments