mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
0426dd505d
## About the changes This upgrades our main branch to use node 18 which is the active LTS version and stops using node 14 which reaches the end of life in a few weeks: https://nodejs.dev/en/about/releases/ This PR also adds `--no-experimental-fetch` for frontend tests and other frontend commands. Related to: https://github.com/node-fetch/node-fetch/issues/1566 More about the experimental fetch release: https://nodejs.org/en/blog/announcements/v18-release-announce#fetch-experimental
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: Publish main branch to dockerhub
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
version: [18-alpine]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Setup QEmu so we can build multiplatform
|
|
uses: docker/setup-qemu-action@v2
|
|
- name: Setup Docker buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: Docker meta configuration
|
|
uses: docker/metadata-action@v4
|
|
id: meta
|
|
with:
|
|
images: |
|
|
unleashorg/unleash-server
|
|
tags: |
|
|
type=edge,prefix=main-,suffix=-${{ matrix.version }}
|
|
- name: Login to docker hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Build tag and push image to Docker hub
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
build-args: NODE_VERSION=${{ matrix.version }}
|