Skip to content

fix api path

fix api path #27

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-image:
runs-on: ubuntu-latest
steps:
- name: Checkout to repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: k1g99
password: ${{ secrets.CR_PAT }}
- name: Build and push container image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/k1g99/fnet:latest
cache-from: type=gha
cache-to: type=gha,mode=max