Merge pull request #708 from kaznovac/patch-1

[docs] test-before-push: push tested image as latest
This commit is contained in:
CrazyMax 2022-10-20 21:05:58 +02:00 committed by GitHub
commit 6e95f19fb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,8 @@ on:
- 'main'
env:
TEST_TAG: user/myapp:test
TEST_TAG: user/app:test
LATEST_TAG: user/app:latest
jobs:
docker:
@ -56,7 +57,7 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ env.TEST_TAG }}
tags: ${{ env.LATEST_TAG }}
```
> **Note**