Skip to content

Add favicons to shortened urls #12

Add favicons to shortened urls

Add favicons to shortened urls #12

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build the Docker image
run: make docker
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Docker image
run: |
make publish
- name: Push Latest Docker image
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
run: |
make publish-latest