-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46b9dc0
commit 5bcfa96
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |