41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
name: Deploy application with Docker
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build_and_deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Build and push backend Docker image
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
push: true
|
|
tags: azpect3120/potion.gophernest:latest
|
|
|
|
- name: Build and push frontend Docker image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: ./web
|
|
file: ./Dockerfile
|
|
push: true
|
|
tags: azpect3120/potion.frontend:latest
|
|
build-args: |
|
|
VITE_ENVIRONMENT=prod
|
|
VITE_DOMAIN_DEV=http://localhost:3000
|
|
VITE_DOMAIN_PROD=https://potion-backend.gophernest.net
|