Skip to content

Commit

Permalink
fix(): Remove hardcoded name in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
n0th1ng-else committed Mar 29, 2024
1 parent f871f51 commit 132179f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,20 @@ jobs:
env:
CONTAINER_NAME: voice-to-speech-app
CONTAINER_REGISTRY: ghcr.io
CONTAINER_OWNER: ${{ env.GITHUB_REPOSITORY_OWNER }}
steps:
- uses: hmarr/debug-action@v3

- name: App version
run: echo "Picked the app version ${{ inputs.sha }}"

- name: Checkout
uses: actions/checkout@v4

- uses: hmarr/debug-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.CONTAINER_REGISTRY }}
username: ${{ env.CONTAINER_OWNER }}
username: ${{ env.GITHUB_REPOSITORY_OWNER }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Publish to Registry
Expand Down

0 comments on commit 132179f

Please sign in to comment.