Skip to content

docs: add README

docs: add README #5

---
name: Publish docker image
on:
push:
branches: main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Build docker image
run: bash build.sh docker
- name: Push all tags
run: docker image push --all-tags ghcr.io/fjelloverflow/note-pls