Skip to content

Fix width and height globally for the svg #7

Fix width and height globally for the svg

Fix width and height globally for the svg #7

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Log in to the Container registry
- name: Log in to the Container registry
run: echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
# Build the Docker image
- name: Build the Docker image
run: docker build . --file Dockerfile --tag aichan-visit-counter:latest --tag ghcr.io/aitorastorga/aichan-visit-counter:latest
# Push the Docker image to GHCR
- name: Push Docker images to GHCR
run: |
# Push the main app image
docker push ghcr.io/aitorastorga/aichan-visit-counter:latest