Skip to content

v0.0.4

v0.0.4 #10

Workflow file for this run

---
name: Publish docker image
on:
release:
types:
- published
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