This commit is contained in:
parent
29217518c3
commit
2fe0eea1c0
1 changed files with 29 additions and 0 deletions
29
.forgejo/workflows/build.yml
Normal file
29
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
permissions: write-all
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: host
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.h2-invent.com
|
||||
username: ${{ secrets.FORGEJO_ACTION_PACKAGE_RW_USER }}
|
||||
password: ${{ secrets.FORGEJO_ACTION_PACKAGE_RW_KEY }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
tags: git.h2-invent.com/meetling/livekit-egress:v1.9,git.h2-invent.com/meetling/livekit-egress:latest
|
||||
build-args: VERSION=v1.9
|
Loading…
Add table
Reference in a new issue