2021-12-13 17:04:28 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
# pull_request:
|
|
|
|
# branches:
|
|
|
|
# - main
|
|
|
|
# paths:
|
2021-12-14 12:33:37 +00:00
|
|
|
# - build/nginx/**
|
2021-12-13 17:04:28 +00:00
|
|
|
# - build/frappe-socketio/**
|
2021-12-14 12:33:37 +00:00
|
|
|
# - build/worker/**
|
2021-12-13 17:04:28 +00:00
|
|
|
# - overrides/**
|
|
|
|
# - tests/**
|
2021-12-15 05:41:25 +00:00
|
|
|
# - compose.yaml
|
2021-12-13 17:04:28 +00:00
|
|
|
# - docker-bake.hcl
|
|
|
|
# - example.env
|
|
|
|
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - main
|
|
|
|
# paths:
|
2021-12-14 12:33:37 +00:00
|
|
|
# - build/nginx/**
|
2021-12-13 17:04:28 +00:00
|
|
|
# - build/frappe-socketio/**
|
2021-12-14 12:33:37 +00:00
|
|
|
# - build/worker/**
|
2021-12-13 17:04:28 +00:00
|
|
|
# - overrides/**
|
|
|
|
# - tests/**
|
2021-12-15 05:41:25 +00:00
|
|
|
# - compose.yaml
|
2021-12-13 17:04:28 +00:00
|
|
|
# - docker-bake.hcl
|
|
|
|
# - example.env
|
|
|
|
|
|
|
|
# # Triggered from frappe/frappe and frappe/erpnext on releases
|
|
|
|
# repository_dispatch:
|
|
|
|
|
|
|
|
# workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-13 17:21:15 +00:00
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
ports:
|
|
|
|
- 5000:5000
|
|
|
|
|
2021-12-13 17:04:28 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
version: [12, 13]
|
|
|
|
|
|
|
|
steps:
|
2021-12-13 17:21:15 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v2
|
2021-12-13 17:04:28 +00:00
|
|
|
with:
|
2021-12-13 17:21:15 +00:00
|
|
|
python-version: 3.9
|
|
|
|
|
|
|
|
- name: Setup Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
with:
|
|
|
|
driver-opts: network=host
|
|
|
|
|
|
|
|
- name: Install Docker Compose v2
|
|
|
|
uses: ndeloof/install-compose-action@4a33bc31f327b8231c4f343f6fba704fedc0fa23
|
|
|
|
|
|
|
|
- name: Get latest versions
|
2021-12-17 08:27:18 +00:00
|
|
|
run: python3 ./.github/scripts/get_latest_tags.py --repo erpnext --version ${{ matrix.version }}
|
2021-12-13 17:21:15 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
uses: docker/bake-action@v1.6.0
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
env:
|
|
|
|
USERNAME: localhost:5000/frappe
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: python3 tests/main.py
|
2021-12-13 17:04:28 +00:00
|
|
|
|
|
|
|
- name: Login
|
|
|
|
if: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Push
|
|
|
|
if: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
|
|
|
uses: docker/bake-action@v1.6.0
|
|
|
|
with:
|
|
|
|
push: true
|
2021-12-13 17:07:07 +00:00
|
|
|
|
|
|
|
release_helm:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request'
|
|
|
|
needs: build
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Setup deploy key
|
|
|
|
uses: webfactory/ssh-agent@v0.5.4
|
|
|
|
with:
|
|
|
|
ssh-private-key: ${{ secrets.HELM_DEPLOY_KEY }}
|
|
|
|
|
|
|
|
- name: Setup Git Credentials
|
|
|
|
run: |
|
|
|
|
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
git config --global user.name "github-actions[bot]"
|
|
|
|
|
|
|
|
- name: Release
|
|
|
|
run: |
|
|
|
|
git clone git@github.com:frappe/helm.git && cd helm
|
|
|
|
pip install -r release_wizard/requirements.txt
|
|
|
|
./release_wizard/wizard 13 patch --remote origin --ci
|