-
Notifications
You must be signed in to change notification settings - Fork 27
feat: add workflow to build ERPNext Docker image with ALYF custom apps #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MarcCon
wants to merge
6
commits into
version-15
Choose a base branch
from
feat-workflow-docker-image
base: version-15
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b487734
feat: add docker image workflow
MarcCon cd3a28b
ci: trigger workflow
MarcCon 4cd881c
ci: fix no arm build
MarcCon dd528e0
ci: typo
MarcCon dcf8c7b
fix: run workflow only on push to main
MarcCon 21c004a
fix: delete push on main
MarcCon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[ | ||
{ | ||
"url": "https://github.com/frappe/erpnext", | ||
"branch": "version-15" | ||
}, | ||
{ | ||
"url": "https://github.com/frappe/hrms.git", | ||
"branch": "version-15" | ||
}, | ||
{ | ||
"url": "https://github.com/alyf-de/erpnext_pdf-on-submit.git", | ||
"branch": "version-15" | ||
}, | ||
{ | ||
"url": "https://github.com/alyf-de/erpnext_germany.git", | ||
"branch": "version-15" | ||
}, | ||
{ | ||
"url": "https://github.com/alyf-de/erpnext_datev.git", | ||
"branch": "version-15" | ||
}, | ||
{ | ||
"url": "https://github.com/alyf-de/banking.git", | ||
"branch": "version-15" | ||
}, | ||
{ | ||
"url": "https://github.com/alyf-de/eu_einvoice.git", | ||
"branch": "version-15" | ||
} | ||
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Build Container Image | ||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout Entire Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set Branch | ||
run: | | ||
export APPS_JSON_PATH='${{ github.workspace }}/.github/helpers/apps.json' | ||
echo "APPS_JSON_BASE64=$(cat $APPS_JSON_PATH | base64 -w 0)" >> $GITHUB_ENV | ||
echo "FRAPPE_BRANCH=version-15" >> $GITHUB_ENV | ||
|
||
- name: Set Image Tag | ||
run: | | ||
echo "IMAGE_TAG=stable" >> $GITHUB_ENV | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: frappe/frappe_docker | ||
path: builds | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v6 | ||
with: | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
context: builds | ||
file: builds/images/layered/Containerfile | ||
tags: > | ||
ghcr.io/${{ github.repository }}:${{ github.ref_name }}, | ||
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }} | ||
build-args: | | ||
"FRAPPE_BRANCH=${{ env.FRAPPE_BRANCH }}" | ||
"APPS_JSON_BASE64=${{ env.APPS_JSON_BASE64 }}" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.