From bf72f00cecaec5250672f56ca9f8ee57ba96ac42 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Sun, 13 Oct 2024 19:53:41 +0200 Subject: [PATCH] fgdsfgd (#44) Reviewed-on: https://git.mgrote.net///container-images/httpd/pulls/44 Co-authored-by: Michael Grote Co-committed-by: Michael Grote --- .gitea/workflows/build.yaml | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 40a9137..4f0bc94 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -45,31 +45,23 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + - name: Extract repository name + id: name + run: | + echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT - name: Docker meta id: meta uses: docker/metadata-action@v5 with: - # generate Docker tags based on the following events/attributes - tags: | - type=ref,event=branch - type=ref,event=pr images: | - registry.mgrote.net/httpd - - name: Set up Docker Buildx + registry.mgrote.net/${{ steps.name.outputs.REPO_NAME }} + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 # - name: Login to Docker Hub # uses: docker/login-action@v3 # with: # username: ${{ secrets.DOCKERHUB_USERNAME }} # password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Extract repository name - id: meta - run: | - echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT - - name: Extract branch name - shell: bash - run: echo $GITHUB_HEAD_REF | tr -cd '[:alnum:]' | sed s/^/REPO_BRANCH=/g >> $GITHUB_OUTPUT - id: extract_branch - name: Build and push Docker image uses: https://github.com/docker/build-push-action@v6 with: