mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3.5.3
|
|
|
|
- name: Get the version
|
|
id: vars
|
|
run: echo ::set-output name=tag::$(echo ${GITHUB_REF:14})
|
|
|
|
- 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 GitHub Container Registry
|
|
uses: docker/login-action@v2.2.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2.2.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build
|
|
uses: docker/build-push-action@v4.1.1
|
|
with:
|
|
context: ./docker/images/n8n
|
|
build-args: |
|
|
N8N_VERSION=${{ steps.vars.outputs.tag }}
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
|
provenance: false
|
|
push: true
|
|
tags: |
|
|
${{ secrets.DOCKER_USERNAME }}/n8n:${{ steps.vars.outputs.tag }}
|
|
ghcr.io/${{ github.repository_owner }}/n8n:${{ steps.vars.outputs.tag }}
|