Skip to content

Commit

Permalink
fix: Automate GH Action worflows to build focker images
Browse files Browse the repository at this point in the history
  • Loading branch information
achetronic committed Feb 16, 2024
1 parent b76231b commit b646b32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-docker-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
- name: Build and push
run: |
if [ "${{ github.event_name }}" = "release" ]; then
echo "TAG=${{ github.ref }}" >> $GITHUB_ENV
TAG="${{ github.ref }}"
elif [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
echo "TAG=${{ inputs.release }}" >> $GITHUB_ENV
TAG="${{ inputs.release }}"
fi
IMG="ghcr.io/freepik-company/tekton-exporter:$TAG" make docker-buildx

0 comments on commit b646b32

Please sign in to comment.