Skip to content

fix minor bugs in the style dark and light template (#2) #29

fix minor bugs in the style dark and light template (#2)

fix minor bugs in the style dark and light template (#2) #29

Workflow file for this run

name: ci
on:
push:
tags:
- '**'
jobs:
build:
name: build
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v3
- name: Rename .env.example to .env
run: mv .env.example .env
- uses: docker/setup-buildx-action@v2
- uses: docker/setup-qemu-action@v2
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ github.ref_name }}
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:latest