mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-09 09:37:01 +02:00
chore: update configuration settings
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
name: Create Docker Image for Backend
|
||||
name: Create Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: main
|
||||
paths:
|
||||
- "backend/**"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@@ -18,8 +16,8 @@ jobs:
|
||||
uses: docker/setup-buildx-action@v1
|
||||
- name: login to docker registry
|
||||
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
|
||||
- name: build the image
|
||||
- name: Build the image
|
||||
run: |
|
||||
cd backend && docker buildx build --push \
|
||||
--tag stonith404/pingvin-share-backend:latest \
|
||||
docker buildx build --push \
|
||||
--tag stonith404/pingvin-share:latest \
|
||||
--platform linux/amd64,linux/arm64 .
|
||||
25
.github/workflows/docker-image-frontend.yml
vendored
25
.github/workflows/docker-image-frontend.yml
vendored
@@ -1,25 +0,0 @@
|
||||
name: Create Docker Image for Frontend
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: main
|
||||
paths:
|
||||
- "frontend/**"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
- name: login to docker registry
|
||||
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
|
||||
- name: build the image
|
||||
run: |
|
||||
cd frontend && docker buildx build --push \
|
||||
--tag stonith404/pingvin-share-frontend:latest \
|
||||
--platform linux/amd64,linux/arm64 .
|
||||
Reference in New Issue
Block a user