mirror of
https://github.com/Suwayomi/Tachidesk.git
synced 2026-01-18 09:42:38 +01:00
* Create docker_build_stable Add docker build workflow * Rename docker_build_stable to docker_build_stable.yml * Update docker_build_stable.yml * Update docker_build_stable.yml
16 lines
539 B
YAML
16 lines
539 B
YAML
name: Docker Build Stable
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build_publish_docker_container:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: run docker build and publish script
|
|
run: |
|
|
curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token ${{ secrets.DEPLOY_PREVIEW_TOKEN }}" -d '{"ref":"main", "inputs":{"tachidesk_release_type": "stable"}}' https://api.github.com/repos/suwayomi/docker-tachidesk/actions/workflows/build_container_images.yml/dispatches
|
|
|