This repository has been archived by the owner on Feb 10, 2025. It is now read-only.
fix: docker build breaking because of corepack #964
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
pull_request: | |
workflow_dispatch: | |
# Cancel a workflow from the same PR, branch or tag when a new workflow is triggered. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Build both ui and admin-ui dockers | |
build-ui-docker: | |
name: "Build ui docker" | |
uses: ./.github/workflows/build-docker.yml | |
with: | |
app-name: "ui" | |
base-url: "" | |
secrets: inherit | |
build-admin-ui-docker: | |
name: "Build admin ui docker" | |
uses: ./.github/workflows/build-docker.yml | |
with: | |
app-name: "admin-ui" | |
base-url: "/kasittely" | |
secrets: inherit |