fix: settings.py only amd64
All checks were successful
Create and publish Frontend container image / build-and-push-image (push) Successful in 13m50s
Create and publish Worker container image / build-and-push-image (push) Successful in 4m32s

This commit is contained in:
zuk 2024-11-14 23:49:45 +01:00
parent 87e9d10bb3
commit 5cb34f9089
2 changed files with 8 additions and 2 deletions

View file

@ -48,11 +48,14 @@ jobs:
type=semver,pattern={{major}}
- name: Copy .env
run: cp .env-dist .env
- name: Link settings.py
run: ln -s settings_dist.py wg_manager/settings.py
- name: Build and push Docker image FE
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
#,linux/arm64
file: Containerfile
push: true
tags: ${{ steps.meta.outputs.tags }}

View file

@ -48,11 +48,14 @@ jobs:
type=semver,pattern={{major}}
- name: Copy .env
run: cp .env-dist .env
- name: Link settings.py
run: ln -s settings_dist.py wg_manager/settings.py
- name: Build and push Docker image FE
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
#,linux/arm64
file: Containerfile-worker
push: true
tags: ${{ steps.meta.outputs.tags }}