Skip to content

Commit

Permalink
push container to registry
Browse files Browse the repository at this point in the history
  • Loading branch information
marco79cgn authored Dec 2, 2024
1 parent a8c7cfe commit 1651071
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,16 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/marco79cgn/audio2tonie:latest
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: |
ghcr.io/marco79cgn/audio2tonie:latest

0 comments on commit 1651071

Please sign in to comment.