2021-05-15 21:29:47 +02:00
|
|
|
name: build nodejs
|
2021-05-15 21:26:45 +02:00
|
|
|
on:
|
2021-09-23 00:35:21 +02:00
|
|
|
workflow_dispatch:
|
2021-05-15 21:29:47 +02:00
|
|
|
schedule:
|
2022-06-28 03:23:18 +02:00
|
|
|
- cron: "0 0 1 * *"
|
2021-05-15 21:26:45 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
2021-05-15 21:29:47 +02:00
|
|
|
- nodejs/*
|
2021-05-15 21:26:45 +02:00
|
|
|
jobs:
|
|
|
|
push:
|
|
|
|
name: "yolks:nodejs_${{ matrix.tag }}"
|
2024-09-04 17:52:23 +02:00
|
|
|
runs-on: self-hosted
|
2021-05-15 21:26:45 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
tag:
|
|
|
|
- 12
|
|
|
|
- 14
|
|
|
|
- 15
|
|
|
|
- 16
|
2021-11-15 15:27:10 +01:00
|
|
|
- 17
|
2022-04-24 21:14:19 +02:00
|
|
|
- 18
|
2024-01-24 15:28:50 +01:00
|
|
|
- 20
|
2021-05-15 21:26:45 +02:00
|
|
|
steps:
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-11-15 15:36:19 +01:00
|
|
|
# Setup QEMU for ARM64 Build
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: docker/setup-qemu-action@v2
|
|
|
|
- uses: docker/setup-buildx-action@v2
|
2021-05-15 21:26:45 +02:00
|
|
|
with:
|
|
|
|
buildkitd-flags: --debug
|
2023-01-09 03:39:33 +01:00
|
|
|
- uses: docker/login-action@v2
|
2021-05-15 21:26:45 +02:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
2024-07-15 19:01:47 +02:00
|
|
|
password: ${{ secrets.GP_TOKEN }}
|
2023-07-12 04:47:58 +02:00
|
|
|
- uses: docker/build-push-action@v4
|
2021-05-15 21:26:45 +02:00
|
|
|
with:
|
|
|
|
context: ./nodejs
|
|
|
|
file: ./nodejs/${{ matrix.tag }}/Dockerfile
|
2021-11-15 15:36:19 +01:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-05-15 21:26:45 +02:00
|
|
|
push: true
|
|
|
|
tags: |
|
2024-07-15 19:20:14 +02:00
|
|
|
ghcr.io/thundernetworkrad/yolks:nodejs_${{ matrix.tag }}
|