Skip to content

Commit

Permalink
Fixed pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Rikpat committed Apr 5, 2024
1 parent b5475dd commit 364f7dc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,13 @@ jobs:
path: /tmp/docker.tar
outputs:
tags: ${{ steps.meta.outputs.tags }}

release:
name: Build Docker
name: Create github release and push image
if: github.event_name != 'pull_request'
needs:
- build
- build-docker
- docker
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down Expand Up @@ -138,3 +139,6 @@ jobs:
docker tag $DOCKER_TAG $dockerImage:$tag
done
docker push --all-tags $DOCKER_TAG
env:
DOCKER_TAG: ${{ needs.docker.outputs.tags }}
GIT_TAG: ${{ steps.tag_version.outputs.new_tag }}

0 comments on commit 364f7dc

Please sign in to comment.