Skip to content

fix colors, show gildings #21

fix colors, show gildings

fix colors, show gildings #21

name: pubish docker image
on:
push:
branches:
- master
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: build docker image
run: docker build -t lurker:latest .
- name: log in to github container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: publish docker image
run: |
docker tag lurker:latest ghcr.io/${{ github.repository_owner }}/lurker:latest
docker push ghcr.io/${{ github.repository_owner }}/lurker:latest