mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
101255d186
ADO-1121 --------- Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
89 lines
2.8 KiB
YAML
89 lines
2.8 KiB
YAML
name: Docker Nightly Image CI
|
|
run-name: Build ${{ inputs.branch }} - ${{ inputs.user }}
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 1 * * *'
|
|
workflow_dispatch:
|
|
inputs:
|
|
repository:
|
|
description: 'GitHub repository to create image off.'
|
|
required: true
|
|
default: 'n8n-io/n8n'
|
|
branch:
|
|
description: 'GitHub branch to create image off.'
|
|
required: true
|
|
default: 'master'
|
|
tag:
|
|
description: 'Name of the docker tag to create.'
|
|
required: true
|
|
default: 'nightly'
|
|
merge-master:
|
|
description: 'Merge with master.'
|
|
type: boolean
|
|
required: true
|
|
default: false
|
|
user:
|
|
description: ''
|
|
required: false
|
|
default: 'schedule'
|
|
start-url:
|
|
description: 'URL to call after workflow is kicked off.'
|
|
required: false
|
|
default: ''
|
|
success-url:
|
|
description: 'URL to call after Docker Image got built successfully.'
|
|
required: false
|
|
default: ''
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Call Start URL - optionally
|
|
run: |
|
|
[[ "${{github.event.inputs.start-url}}" != "" ]] && curl -v -X POST -d 'url=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}' ${{github.event.inputs.start-url}} || echo ""
|
|
shell: bash
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3.5.3
|
|
with:
|
|
repository: ${{ github.event.inputs.repository || 'n8n-io/n8n' }}
|
|
ref: ${{ github.event.inputs.branch || 'master' }}
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2.2.0
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2.9.1
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2.2.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Merge Master - optionally
|
|
run: |
|
|
[[ "${{github.event.inputs.merge-master}}" == "true" ]] && git remote add upstream https://github.com/n8n-io/n8n.git -f; git merge upstream/master --allow-unrelated-histories || echo ""
|
|
shell: bash
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v4.1.1
|
|
with:
|
|
context: .
|
|
build-args: |
|
|
N8N_RELEASE_TYPE=nightly
|
|
file: ./docker/images/n8n-custom/Dockerfile
|
|
platforms: linux/amd64
|
|
provenance: false
|
|
push: true
|
|
tags: ${{ secrets.DOCKER_USERNAME }}/n8n:${{ github.event.inputs.tag || 'nightly' }}
|
|
no-cache: true
|
|
|
|
- name: Call Success URL - optionally
|
|
run: |
|
|
[[ "${{github.event.inputs.success-url}}" != "" ]] && curl -v ${{github.event.inputs.success-url}} || echo ""
|
|
shell: bash
|