mirror of
https://github.com/bsedin/matrix-webhook.git
synced 2026-04-09 11:25:40 +00:00
Let's try gitea
Some checks failed
Publish on Docker Hub / docker-hub (push) Failing after 5m57s
Test entrypoints / test-entrypoints (push) Failing after 7m6s
Lints / lint (push) Failing after 1m29s
Nix CI / Nix build on ${{ matrix.os }} (ubuntu) (push) Failing after 2m11s
Tests / tests (push) Failing after 2m24s
Nix CI / Nix build on ${{ matrix.os }} (macos) (push) Has been cancelled
Some checks failed
Publish on Docker Hub / docker-hub (push) Failing after 5m57s
Test entrypoints / test-entrypoints (push) Failing after 7m6s
Lints / lint (push) Failing after 1m29s
Nix CI / Nix build on ${{ matrix.os }} (ubuntu) (push) Failing after 2m11s
Tests / tests (push) Failing after 2m24s
Nix CI / Nix build on ${{ matrix.os }} (macos) (push) Has been cancelled
This commit is contained in:
33
.gitea/workflows/docker-hub.yml
Normal file
33
.gitea/workflows/docker-hub.yml
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Publish on Docker Hub
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
docker-hub:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: docker/metadata-action@v5
|
||||
id: meta
|
||||
with:
|
||||
images: nim65s/matrix-webhook
|
||||
- uses: docker/setup-qemu-action@v3
|
||||
name: Set up QEMU
|
||||
- uses: docker/setup-buildx-action@v3
|
||||
name: Set up Docker Buildx
|
||||
- uses: docker/login-action@v3
|
||||
with:
|
||||
username: nim65s
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
Reference in New Issue
Block a user