2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-02-04 21:18:28 +00:00
frappe_docker/.github/workflows/build_stable.yml

77 lines
2.0 KiB
YAML
Raw Normal View History

2021-12-17 11:48:12 +03:00
name: Build Stable
2021-12-13 20:04:28 +03:00
on:
2021-12-17 15:34:31 +03:00
pull_request:
branches:
- main
paths:
- build/nginx/**
- build/socketio/**
- build/worker/**
- overrides/**
- tests/**
- compose.yaml
- docker-bake.hcl
- example.env
2021-12-13 20:04:28 +03:00
2021-12-17 15:34:31 +03:00
push:
branches:
- main
paths:
- build/nginx/**
- build/socketio/**
- build/worker/**
- overrides/**
- tests/**
- compose.yaml
- docker-bake.hcl
- example.env
2021-12-13 20:04:28 +03:00
2021-12-17 15:34:31 +03:00
# Triggered from frappe/frappe and frappe/erpnext on releases
repository_dispatch:
2021-12-13 20:04:28 +03:00
2021-12-17 15:34:31 +03:00
workflow_dispatch:
2021-12-13 20:04:28 +03:00
jobs:
2021-12-17 11:43:48 +03:00
v12:
uses: vrslev/frappe_docker/.github/workflows/docker-build-push.yml@beautify
2021-12-17 11:43:48 +03:00
with:
repo: erpnext
2021-12-17 11:43:48 +03:00
version: "13"
push: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
2021-12-17 11:38:54 +03:00
2021-12-17 11:43:48 +03:00
v13:
uses: vrslev/frappe_docker/.github/workflows/docker-build-push.yml@beautify
2021-12-17 11:38:54 +03:00
with:
repo: erpnext
2021-12-17 11:38:54 +03:00
version: "13"
2021-12-17 11:40:15 +03:00
push: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
2021-12-17 11:38:54 +03:00
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
2021-12-17 11:43:48 +03:00
release_helm:
runs-on: ubuntu-latest
if: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
needs: v13
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