mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
25 lines
No EOL
522 B
YAML
25 lines
No EOL
522 B
YAML
name: Docker image builds
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sb-server:
|
|
uses: ./.github/workflows/docker-build.yml
|
|
with:
|
|
name: "sb-server"
|
|
username: "ajayyy"
|
|
folder: "."
|
|
secrets:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
rsync-host:
|
|
needs: sb-server
|
|
uses: ./.github/workflows/docker-build.yml
|
|
with:
|
|
name: "rsync-host"
|
|
username: "ajayyy"
|
|
folder: "./containers/rsync"
|
|
secrets:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |