Skip to content

Commit

Permalink
fix $ sign in wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
srliao committed Apr 17, 2024
1 parent 4c11e3c commit b70353b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/containers/embedgenerator/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: deployment build
name: build containers
on:
workflow_dispatch:
push:
Expand Down Expand Up @@ -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 }}

0 comments on commit b70353b

Please sign in to comment.