mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-10-30 05:57:12 +00:00
28 lines
761 B
YAML
28 lines
761 B
YAML
name: Merge
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
tests:
|
|
uses: ./.github/workflows/tests.yml
|
|
secrets:
|
|
openai_key: ${{ secrets.OPENAI_KEY }}
|
|
discord_webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
|
|
version:
|
|
needs: tests
|
|
uses: ./.github/workflows/version.yml
|
|
|
|
build-and-deploy:
|
|
needs: version
|
|
uses: ./.github/workflows/docker-image.yml
|
|
secrets:
|
|
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repo_token: ${{ secrets.GPAT_TOKEN }}
|
|
discord_webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
with:
|
|
version: ${{ needs.version.outputs.version }} |