diff --git a/.github/workflows/build_develop.yml b/.github/workflows/build_develop.yml index e6620241..d3f7c55b 100644 --- a/.github/workflows/build_develop.yml +++ b/.github/workflows/build_develop.yml @@ -1,7 +1,6 @@ name: Build Develop on: - push: pull_request: branches: - main @@ -50,12 +49,11 @@ jobs: - name: Push uses: docker/bake-action@v1.6.0 - # if: env.IS_AUTHORIZED_RUN == 'true' + if: env.IS_AUTHORIZED_RUN == 'true' with: files: docker-bake.hcl targets: bench-build - # push: true - push: false + push: true build_frappe: name: Frappe @@ -86,13 +84,12 @@ jobs: run: ./tests/test-frappe.sh - name: Push - # if: env.IS_AUTHORIZED_RUN == 'true' + if: env.IS_AUTHORIZED_RUN == 'true' uses: docker/bake-action@v1.6.0 with: files: docker-bake.hcl targets: frappe-develop - # push: true - push: false + push: true build_erpnext: name: ERPNext @@ -123,10 +120,9 @@ jobs: run: FRAPPE_VERSION=develop ./tests/test-erpnext.sh - name: Push - # if: env.IS_AUTHORIZED_RUN == 'true' + if: env.IS_AUTHORIZED_RUN == 'true' uses: docker/bake-action@v1.6.0 with: files: docker-bake.hcl targets: erpnext-develop - # push: true - push: false + push: true diff --git a/.github/workflows/build_stable.yml b/.github/workflows/build_stable.yml index 83174f5a..399ab42a 100644 --- a/.github/workflows/build_stable.yml +++ b/.github/workflows/build_stable.yml @@ -2,17 +2,17 @@ name: Build Stable on: push: - # branches: - # - main - # paths: - # - .github/** - # - build/** - # - installation/** - # - tests/** - # - .dockerignore - # - docker-bake.hcl - # - docker-compose.yml - # - env* + branches: + - main + paths: + - .github/** + - build/** + - installation/** + - tests/** + - .dockerignore + - docker-bake.hcl + - docker-compose.yml + - env* # Triggered from frappe/frappe and frappe/erpnext on releases repository_dispatch: @@ -61,18 +61,17 @@ jobs: run: ./tests/test-frappe.sh - name: Push - # if: github.repository == 'frappe/frappe_docker' + if: github.repository == 'frappe/frappe_docker' uses: docker/bake-action@v1.6.0 with: files: docker-bake.hcl targets: frappe-stable - # push: true - push: false + push: true build_erpnext: name: ERPNext runs-on: ubuntu-latest - # needs: build_frappe + needs: build_frappe strategy: matrix: version: [12, 13] @@ -111,13 +110,12 @@ jobs: run: ./tests/test-erpnext.sh - name: Push - # if: github.repository == 'frappe/frappe_docker' + if: github.repository == 'frappe/frappe_docker' uses: docker/bake-action@v1.6.0 with: files: docker-bake.hcl targets: erpnext-stable - # push: true - push: false + push: true release_helm: name: Release Helm diff --git a/.gitignore b/.gitignore index 4abe3689..e6ae4965 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,3 @@ deploy_key.pub # VS Code devcontainer .devcontainer -venv \ No newline at end of file