Skip to content

Lowercase repo name

Lowercase repo name #3

Workflow file for this run

name: Build and Publish Docker Image
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ThijmenGThN
password: ${{ secrets.GH_PAT }}
- name: Build Docker image
run: docker build -t ghcr.io/thijmengthn/wiki:latest .
- name: Push Docker image to GitHub Container Registry
run: docker push ghcr.io/thijmengthn/wiki:latest