Manuel Bustillo 4c50ed19aa
All checks were successful
Playwright Tests / test (pull_request) Successful in 3m6s
Build docker image / build-static-assets (pull_request) Successful in 7m30s
Configure docker build
2024-08-11 22:50:36 +02:00

31 lines
832 B
YAML

name: Build docker image
on:
push:
branches:
- main
pull_request:
jobs:
build-static-assets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: bustikiller/wedding-planner-frontend:latest
cache-from: type=registry,ref=user/app:latest
cache-to: type=inline