Register and Issue using acme.sh #198
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
name: Register and Issue using acme.sh | |
on: | |
push: | |
schedule: | |
- cron: "20 6 1/7 * *" | |
jobs: | |
acmesh-register-and-issue: | |
runs-on: ubuntu-latest | |
env: | |
ACMEDNS_EMAIL: ${{ secrets.ACMEDNS_EMAIL }} | |
steps: | |
- name: Install acme.sh | |
run: curl https://get.acme.sh | sh -s email=${ACMEDNS_EMAIL} --install --force | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Register and Issue certificate (staging only) | |
run: ${GITHUB_WORKSPACE}/examples/acme.sh/register-and-issue.sh | |