From a05a04632879e351bcd8f7a4aadb72ba8ea33fb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Darveau?= Date: Sat, 26 Jun 2021 18:11:30 -0400 Subject: [PATCH] fix docker image Github Action --- .github/workflows/docker-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 0bad2a5..057ac91 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -1,9 +1,9 @@ name: Docker Image CI on: push: - branches: [ docker ] + branches: [ master ] pull_request: - branches: [ docker ] + branches: [ master ] jobs: build: runs-on: ubuntu-latest @@ -18,7 +18,7 @@ jobs: - name: Prepare id: prep run: | - DOCKER_IMAGE=ghcr.io/fdarveau/flame + DOCKER_IMAGE=ghcr.io/${{ github.repository }} VERSION=latest if [[ $GITHUB_REF == refs/tags/* ]]; then VERSION=${GITHUB_REF#refs/tags/v}