1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-19 17:07:18 +03:00

🐳 Fix automerge

This commit is contained in:
Jan Oberhauser 2022-02-10 14:35:07 +01:00
parent 6ea22f8451
commit 44381b2fbc

View File

@ -44,7 +44,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Merge Master - optionally
run: |
[[ "${{github.event.inputs.merge-master}}" == "true" ]] && git merge master || echo ""
[[ "${{github.event.inputs.merge-master}}" == "true" ]] && git remote add upstream git@github.com:n8n-io/n8n.git -f; git merge upstream/master; git merge master || echo ""
shell: bash
- name: Build and push
uses: docker/build-push-action@v2