Skip to content

Commit

Permalink
ci: fix syntax error in Docker action tags
Browse files Browse the repository at this point in the history
This commit addresses a syntax error in the Docker image tag creation
step.
  • Loading branch information
rickstaa committed May 20, 2024
1 parent 55185db commit 2b8478d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
type=semver,pattern={{major}}.{{minor}},prefix=v
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=${{ github.event.pull_request.head.ref }}
type=raw,value=stable,enable=${{ startsWith(github.event.ref, 'refs/tags/v') && is_default_branch }}
type=raw,value=stable,enable=${{ startsWith(github.event.ref, 'refs/tags/v') && github.event.base_ref == 'refs/heads/main' }}
- name: Build and push livepeer docker image
uses: docker/build-push-action@v5
Expand Down

0 comments on commit 2b8478d

Please sign in to comment.