This repository was archived by the owner on May 15, 2025. It is now read-only.
Register and Issue using Traefik #196
This file contains hidden or 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
| name: Register and Issue using Traefik | |
| on: | |
| push: | |
| schedule: | |
| - cron: "40 6 1/7 * *" | |
| jobs: | |
| traefik-register-and-issue: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install jq if needed | |
| run: jq -V || (apt update && apt install -y jq) | |
| - uses: actions/checkout@v3 | |
| - name: Register and Issue certificate | |
| run: ${GITHUB_WORKSPACE}/examples/traefik/test.sh | |