Skip to content

chore: update copy func (#496) #2

chore: update copy func (#496)

chore: update copy func (#496) #2

Workflow file for this run

name: Build and Push Docker Images
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build base image
run: bash scripts/build-base-image.sh
- name: Build nginx image
run: bash scripts/build-nginx.sh
- name: Build standalone image
run: bash scripts/build-standalone.sh
- name: Build static image
run: bash scripts/build-static.sh
- name: Push images to Docker Hub
run: bash scripts/push-images.sh