Skip to content

Changing Log Level

Changing Log Level #2

Workflow file for this run

name: Publish Docker Image to GHCR
on:
push
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and push the image
run: |
docker login --username goingoffroading --password ${{ secrets.GH_PAT }} ghcr.io
docker build . --tag ghcr.io/goingoffroading/boilest-manager:latest
docker push ghcr.io/goingoffroading/boilest-manager:latest