Skip to content

frontend支持环境变量修正backend地址 #4

frontend支持环境变量修正backend地址

frontend支持环境变量修正backend地址 #4

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
buildBackendApplication:
name: "Build Backend Application"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: buka-lnc/github.actions/build-docker-image@main
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
dockerfile: ./app/backend/dockerfile
tags: ghcr.io/buka-lnc/opendoc-backend:latest
buildFrontendApplication:
name: "Build Frontend Application"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: buka-lnc/github.actions/build-docker-image@main
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
dockerfile: ./app/frontend/dockerfile
tags: ghcr.io/buka-lnc/opendoc-frontend:latest