2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-10 09:02:13 +00:00

Fix update example.env job

This commit is contained in:
Lev Vereshchagin 2021-12-22 13:17:09 +03:00
parent e772614c35
commit 59db4182e6

View File

@ -70,19 +70,22 @@ jobs:
- name: Get latest versions - name: Get latest versions
run: python3 ./.github/scripts/get_latest_tags.py --repo erpnext --version 13 run: python3 ./.github/scripts/get_latest_tags.py --repo erpnext --version 13
- name: Update example.env - name: Update
run: python3 ./.github/scripts/update_example_env.py run: python3 ./.github/scripts/update_example_env.py
- name: Setup Git Credentials - name: Push
run: | run: |
git config --global user.name github-actions git config --global user.name github-actions
git config --global user.email github-actions@github.com git config --global user.email github-actions@github.com
- name: Commit and push
run: |
git add example.env git add example.env
git commit -m "chore: Update `example.env`" if [ -z "$(git status --porcelain)" ]; then
git push origin main echo "example.env did not change, exiting."
exit 0
else
echo "example.env changed, pushing changes..."
git commit -m "chore: Update example.env"
git push origin main
fi
release_helm: release_helm:
runs-on: ubuntu-latest runs-on: ubuntu-latest