mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
2970cbe401
* ci: update all github actions setup npm cache on all workflows * run full linting on master
40 lines
1 KiB
YAML
40 lines
1 KiB
YAML
name: Docker Base Image CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
node_version:
|
|
description: 'Node.js version to build this image with.'
|
|
type: string
|
|
required: true
|
|
default: '16'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: ./docker/images/n8n-base
|
|
build-args: |
|
|
NODE_VERSION=${{github.event.inputs.node_version}}
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
|
push: true
|
|
tags: |
|
|
${{ secrets.DOCKER_USERNAME }}/base:${{ github.event.inputs.node_version }}
|