Skip to content

Commit

Permalink
Add ghaction to publish on ghcr.io
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraWebdev committed Jan 11, 2025
1 parent 46b9dc0 commit 5bcfa96
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish-on-ghcr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Build Docker and release on GHCR
on:
push

jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and push the image
run : |
docker login --username laurawebdev --password ${{ secrets.GH_PAT }} ghcr.io
docker build . --tag ghcr.io/laurawebdev/khid-docker:latest
docker push ghcr.io/laurawebdev/khid-docker:latest

0 comments on commit 5bcfa96

Please sign in to comment.