diff --git a/.github/workflows/build-node-image.yaml b/.github/workflows/build-node-image.yaml index cda2282..9900f33 100644 --- a/.github/workflows/build-node-image.yaml +++ b/.github/workflows/build-node-image.yaml @@ -37,7 +37,7 @@ jobs: uses: actions/checkout@v4 - name: Log in to GHCR - if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.push == 'true') + if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.push) run: podman login -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} ${{ env.REGISTRY }} - name: Build bootc image @@ -57,7 +57,7 @@ jobs: echo "Image tag: ${TAG}" - name: Tag and push - if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.push == 'true') + if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.push) run: | # push bootc image under both :latest and versioned tags podman tag localhost/bink-node:${{ steps.meta.outputs.tag }} \