ci: pass app version
This commit is contained in:
parent
a323dcee5a
commit
2087aa7f41
5
.github/workflows/publish-containers.yml
vendored
5
.github/workflows/publish-containers.yml
vendored
@ -14,6 +14,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
version: ['0.0.1']
|
version: ['0.0.1']
|
||||||
build-platforms: ['linux/amd64, linux/arm64']
|
build-platforms: ['linux/amd64, linux/arm64']
|
||||||
|
app: ['explorer']
|
||||||
name: Build the ${{ inputs.image_name }} image
|
name: Build the ${{ inputs.image_name }} image
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -44,7 +45,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
context: '.'
|
context: '.'
|
||||||
file: './Dockerfile'
|
file: './Dockerfile'
|
||||||
build-args: 'APP=explorer'
|
build-args: 'APP=${{ matrix.app }}'
|
||||||
platforms: ${{ matrix.build-platforms }}
|
platforms: ${{ matrix.build-platform }}
|
||||||
tags: ${{ steps.tags.outputs.latest }},${{ steps.tags.outputs.current }}
|
tags: ${{ steps.tags.outputs.latest }},${{ steps.tags.outputs.current }}
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
|
Loading…
Reference in New Issue
Block a user