Add ghcr to README #2
Workflow file for this run
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
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 |