This commit is contained in:
Andras Schmelczer 2022-06-25 19:53:30 +02:00
parent 01ae2fa891
commit baa06c7e64

View file

@ -24,8 +24,16 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Extract metadata for the Docker image
id: meta
uses: docker/metadata-action@v4
with:
images: schmelczera/great_ai
- name: Build and push - name: Build and push
uses: docker/build-push-action@v3 uses: docker/build-push-action@v3
with: with:
push: true push: true
tags: schmelczera/great_ai:latest,schmelczera/great_ai:${GITHUB_REF##*/} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}