add firestarr-minimal to docker-compose.yml #53
This file contains hidden or 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
| name: build-docker | |
| on: | |
| push: | |
| branches: [ "main", "dev", "unstable" ] | |
| tags: [ "*" ] | |
| workflow_dispatch: | |
| env: | |
| REGISTRY_IMAGE: ghcr.io/cwfmf/firestarr-cpp/firestarr | |
| jobs: | |
| build-firestarr: | |
| uses: ./.github/workflows/build-docker-image.yml | |
| with: | |
| image: firestarr | |
| # FIX: Error: Failed to CreateArtifact: Received non-retryable error: | |
| # Failed request: (409) Conflict: an artifact with this name already | |
| # exists on the workflow run | |
| # # uses cache from previous image so don't do at the same time | |
| # build-firestarr-minimal: | |
| # needs: [ build-firestarr ] | |
| # uses: ./.github/workflows/build-docker-image.yml | |
| # with: | |
| # image: firestarr-minimal |