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 }}
|
2024-01-03 10:42:32 +01:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
id-token: write # needed for signing the images with GitHub OIDC Token
|
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
|
|
|
|
2024-01-03 10:42:32 +01:00
|
|
|
- name: Install Cosign
|
|
|
|
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # v3
|
|
|
|
|
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
|
2024-07-24 13:40:31 +02:00
|
|
|
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
|
2022-07-29 15:30:16 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Set up Docker Buildx
|
2024-07-24 13:40:31 +02:00
|
|
|
uses: docker/setup-buildx-action@aa33708b10e362ff993539393ff100fa93ed6a27 # 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
|
2024-07-24 13:40:31 +02:00
|
|
|
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # 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
|
2024-03-05 15:43:09 +01:00
|
|
|
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # 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
|
2024-01-03 10:42:32 +01:00
|
|
|
id: build-and-push
|
2024-07-24 13:40:31 +02:00
|
|
|
uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445 # v6
|
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
|
|
|
|
2024-01-03 10:42:32 +01:00
|
|
|
- name: Sign the images with GitHub OIDC Token
|
|
|
|
env:
|
|
|
|
DIGEST: ${{ steps.build-and-push.outputs.digest }}
|
|
|
|
TAGS: ${{ steps.meta.outputs.tags }}
|
|
|
|
run: |
|
|
|
|
images=""
|
|
|
|
for tag in ${TAGS}; do
|
2024-05-08 17:56:45 +02:00
|
|
|
images+="${tag}@${DIGEST} "
|
2024-01-03 10:42:32 +01:00
|
|
|
done
|
|
|
|
cosign sign --yes ${images}
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Update repo description
|
2023-11-09 17:27:01 +01:00
|
|
|
if: matrix.variant == 'vanilla'
|
2024-02-02 17:46:25 +01:00
|
|
|
uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4
|
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
|