2022-07-29 15:30:16 +02:00
|
|
|
name: Dockerhub
|
|
|
|
on:
|
2022-12-09 13:28:29 +01:00
|
|
|
workflow_dispatch: {}
|
|
|
|
push:
|
|
|
|
tags: [v*]
|
|
|
|
schedule:
|
|
|
|
# This job can take a while, and we have usage limits, so just publish develop only twice a day
|
|
|
|
- cron: "0 7/12 * * *"
|
2023-03-30 14:55:09 +02:00
|
|
|
concurrency: ${{ github.workflow }}-${{ github.ref_name }}
|
2022-07-29 15:30:16 +02:00
|
|
|
jobs:
|
2022-12-09 13:28:29 +01:00
|
|
|
buildx:
|
|
|
|
name: Docker Buildx
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
environment: dockerhub
|
2023-11-06 12:01:02 +01:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- variant: vanilla
|
|
|
|
# Variant we ship to aid ESS in providing a build on the OpenCoDE platform including specific modules
|
|
|
|
- variant: opendesk
|
|
|
|
flavor: suffix=-opendesk,onlatest=true
|
|
|
|
prepare: mv variants/openDesk/* .
|
2022-12-09 13:28:29 +01:00
|
|
|
steps:
|
2023-09-05 19:31:32 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0 # needed for docker-package to be able to calculate the version
|
2022-07-29 15:30:16 +02:00
|
|
|
|
2023-11-06 12:01:02 +01:00
|
|
|
- name: Prepare
|
|
|
|
if: matrix.prepare
|
|
|
|
run: ${{ matrix.prepare }}
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Set up QEMU
|
2023-09-22 02:23:41 +02:00
|
|
|
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3
|
2022-07-29 15:30:16 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Set up Docker Buildx
|
2023-09-22 02:23:41 +02:00
|
|
|
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
|
|
|
install: true
|
2022-07-29 15:30:16 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Login to Docker Hub
|
2023-09-22 02:23:41 +02:00
|
|
|
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2022-07-29 15:30:16 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2023-09-22 02:23:41 +02:00
|
|
|
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
|
|
|
images: |
|
|
|
|
vectorim/element-web
|
|
|
|
tags: |
|
|
|
|
type=ref,event=branch
|
|
|
|
type=ref,event=tag
|
|
|
|
flavor: |
|
|
|
|
latest=${{ contains(github.ref_name, '-rc.') && 'false' || 'auto' }}
|
2023-11-06 12:01:02 +01:00
|
|
|
${{ matrix.flavor }}
|
2022-07-29 15:30:16 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Build and push
|
2023-09-22 02:23:41 +02:00
|
|
|
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2022-07-29 15:30:16 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Update repo description
|
2023-11-09 17:27:01 +01:00
|
|
|
if: matrix.variant == 'vanilla'
|
2023-06-27 19:12:11 +02:00
|
|
|
uses: peter-evans/dockerhub-description@dc67fad7001ef9e8e3c124cb7a64e16d0a63d864 # v3
|
2022-12-09 13:28:29 +01:00
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
repository: vectorim/element-web
|