Skip to content

fix: use absolute path when printing config path #10

fix: use absolute path when printing config path

fix: use absolute path when printing config path #10

Workflow file for this run

name: Backend Server CI
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Push Docker Image
id: docker_build
uses: docker/build-push-action@v4
with:
context: .
push: true
platforms: linux/amd64
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/toyou-backend:latest
cache-from: type=gha
cache-to: type=gha,mode=max