mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-10 07:11:00 +00:00
89 lines
2.3 KiB
YAML
89 lines
2.3 KiB
YAML
|
name: Build Develop
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- .github/**
|
||
|
- build/**
|
||
|
- installation/**
|
||
|
- tests/**
|
||
|
- .dockerignore
|
||
|
- docker-bake.hcl
|
||
|
- docker-compose.yml
|
||
|
- env*
|
||
|
|
||
|
# Nightly builds at 12:00 am
|
||
|
schedule:
|
||
|
- cron: 0 0 * * *
|
||
|
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
build_bench:
|
||
|
name: Bench image
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: docker/setup-buildx-action@v1
|
||
|
|
||
|
- uses: docker/login-action@v1
|
||
|
if: github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request'
|
||
|
with:
|
||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||
|
|
||
|
- name: Build and push
|
||
|
uses: docker/bake-action@v1.6.0
|
||
|
with:
|
||
|
files: docker-bake.hcl
|
||
|
targets: frappe-bench
|
||
|
push: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
||
|
|
||
|
build_main:
|
||
|
name: Frappe and ERPNext images
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: docker/setup-buildx-action@v1
|
||
|
|
||
|
- uses: docker/login-action@v1
|
||
|
if: github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request'
|
||
|
with:
|
||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||
|
|
||
|
- name: Build Frappe images
|
||
|
uses: docker/bake-action@v1.6.0
|
||
|
with:
|
||
|
files: docker-bake.hcl
|
||
|
targets: frappe-develop
|
||
|
load: true
|
||
|
|
||
|
- name: Build ERPNext images
|
||
|
uses: docker/bake-action@v1.6.0
|
||
|
with:
|
||
|
files: docker-bake.hcl
|
||
|
targets: erpnext-develop
|
||
|
load: true
|
||
|
|
||
|
- name: Test
|
||
|
run: ./.github/scripts/install-deps-and-test.sh
|
||
|
|
||
|
- name: Push Frappe images
|
||
|
if: github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request'
|
||
|
uses: docker/bake-action@v1.6.0
|
||
|
with:
|
||
|
files: docker-bake.hcl
|
||
|
targets: frappe-develop
|
||
|
push: true
|
||
|
|
||
|
- name: Push ERPNext images
|
||
|
if: github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request'
|
||
|
uses: docker/bake-action@v1.6.0
|
||
|
with:
|
||
|
files: docker-bake.hcl
|
||
|
targets: erpnext-develop
|
||
|
push: true
|