Update author in Dockerfile #2
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: Docker image CI for GHCR | |
on: | |
push | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build an push the image | |
run: | | |
docker login --username drdada --password ${{ secrets.GH_TOKEN }} ghcr.io | |
docker build . --tag ghcr.io/drdada/obsidian-remote:latest | |
docker push ghcr.io/drdada/obsidian-remote:latest |