forked from sytone/obsidian-remote
-
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
Drdada
committed
Oct 21, 2023
1 parent
12d4e9f
commit 97e3a64
Showing
4 changed files
with
15 additions
and
137 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
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 |
This file was deleted.
Oops, something went wrong.