Docker Hub Periodic Trigger #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2024 RFull Development | |
# This source code is managed under the MIT license. See LICENSE in the project root. | |
name: Docker Hub Periodic Trigger | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 0" | |
permissions: | |
contents: read | |
jobs: | |
docker-hub: | |
runs-on: ubuntu-latest | |
environment: Docker Hub | |
steps: | |
- name: Trigger builds on Docker Hub | |
run: | | |
curl -X POST ${{ secrets.DOCKER_HUB_TRIGGER_URL }} -o /dev/null |