mirror of
https://github.com/jaypyles/Scraperr.git
synced 2026-05-03 07:50:41 +00:00
91dc13348d
* chore: wip add upload/import * chore: wip add upload/import * feat: update job rerunning * fix: update workflow * fix: update workflow * chore: temp disable workflow
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: Merge
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
types: [closed]
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
# TODO: Renable once browser forge is fixed for camoufox, or else tests will never pass
|
|
# tests:
|
|
# uses: ./.github/workflows/tests.yml
|
|
# secrets:
|
|
# openai_key: ${{ secrets.OPENAI_KEY }}
|
|
# discord_webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
|
|
version:
|
|
uses: ./.github/workflows/version.yml
|
|
secrets:
|
|
git_token: ${{ secrets.GPAT_TOKEN }}
|
|
|
|
build-and-deploy:
|
|
if: needs.version.outputs.version_bump == 'true'
|
|
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 }} |