Skip to content

add workflows to correct dir #1

add workflows to correct dir

add workflows to correct dir #1

Workflow file for this run

---
name: CI/CD
on:
push:
branches: main
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
- name: Push all tags
run: docker image push --all-tags ghcr.io/fjelloverflow/note-pls