Skip to content

Commit

Permalink
feat(Continuous Integration): publish images to internal docker registry
Browse files Browse the repository at this point in the history
  • Loading branch information
gremid committed Dec 17, 2024
1 parent fcf67c4 commit e7fab13
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: ci

on:
workflow_dispatch:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:
branches:
- 'master'

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: docker.zdl.org/zdl/dwds-livestream
-
name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: docker.zdl.org
username: ${{ secrets.ZDL_DOCKER_USERNAME }}
password: ${{ secrets.ZDL_DOCKER_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit e7fab13

Please sign in to comment.