From 5e62751a3dd2c685750fcc210ceaba434e4ceb1e Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Fri, 22 Sep 2023 13:36:18 +0200 Subject: [PATCH] first working docker image publishing workflow --- .github/workflows/pushimage.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pushimage.yaml b/.github/workflows/pushimage.yaml index d21011b..dc5f0e1 100644 --- a/.github/workflows/pushimage.yaml +++ b/.github/workflows/pushimage.yaml @@ -2,8 +2,8 @@ name: build-push-image on: push: - branches: - - 'development' + tags: + - 'v*' jobs: build-and-push-image: @@ -25,4 +25,4 @@ jobs: uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc with: push: true - tags: ghcr.io/tlinden/ephemerup:latest + tags: ghcr.io/tlinden/ephemerup:${{ github.ref_name}}