mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
36 lines
904 B
YAML
36 lines
904 B
YAML
name: Push to Docker Hub
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
-
|
|
name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
# -
|
|
# name: Build and push backend
|
|
# uses: docker/build-push-action@v3
|
|
# with:
|
|
# push: true
|
|
# context: /backend
|
|
# tags: infisical/backend:latest
|
|
-
|
|
name: Build and push frontend
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
push: true
|
|
file: /frontend/Dockerfile.dev
|
|
context: /frontend
|
|
tags: infisical/frontend:test
|