From b70353beadbcea7c78cdfae0ed6a8b9cb0cbf00f Mon Sep 17 00:00:00 2001 From: srliao <906239+srliao@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:13:00 -0400 Subject: [PATCH] fix $ sign in wrong place --- .github/actions/containers/embedgenerator/action.yml | 2 +- .github/workflows/containers.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/containers/embedgenerator/action.yml b/.github/actions/containers/embedgenerator/action.yml index b28cfcc74..a618cce0e 100644 --- a/.github/actions/containers/embedgenerator/action.yml +++ b/.github/actions/containers/embedgenerator/action.yml @@ -35,7 +35,7 @@ runs: id: meta uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 with: - images: ghcr.io/{{ inputs.githubRepo }} + images: ghcr.io/${{ inputs.githubRepo }} - name: Build go executable working-directory: ./cmd/services/embedgenerator diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index 963757fd8..5854302bc 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -1,4 +1,4 @@ -name: deployment build +name: build containers on: workflow_dispatch: push: @@ -38,5 +38,5 @@ jobs: uses: ./.github/actions/containers/embedgenerator with: gitHubToken: ${{ secrets.GITHUB_TOKEN }} - githubActor: $${{ github.actor}} - githubRepo: $${{ github.repository }} + githubActor: ${{ github.actor }} + githubRepo: ${{ github.repository }}