feat: 给update.sh里的 dns 配上环境变量
This commit is contained in:
71
.github/workflows/docker-publish.yml
vendored
Normal file
71
.github/workflows/docker-publish.yml
vendored
Normal file
@ -0,0 +1,71 @@
|
||||
name: Docker
|
||||
|
||||
# This workflow uses actions that are not certified by GitHub.
|
||||
# They are provided by a third-party and are governed by
|
||||
# separate terms of service, privacy policy, and support
|
||||
# documentation.
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '40 23 * * *'
|
||||
push:
|
||||
branches: [ main ]
|
||||
# Publish semver tags as releases.
|
||||
tags: [ 'v*.*.*' ]
|
||||
# pull_request:
|
||||
# branches: [ main ]
|
||||
|
||||
env:
|
||||
# Use docker.io for Docker Hub if empty
|
||||
REGISTRY: ghcr.io
|
||||
# github.repository as <account>/<repo>
|
||||
IMAGE_NAME: ${{ github.repository }}
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
# This is used to complete the identity challenge
|
||||
# with sigstore/fulcio when running outside of PRs.
|
||||
id-token: write
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# Workaround: https://github.com/docker/build-push-action/issues/461
|
||||
- name: Setup Docker buildx
|
||||
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
|
||||
|
||||
# Login against a Docker registry except on PR
|
||||
# https://github.com/docker/login-action
|
||||
- name: Log into registry
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Extract metadata (tags, labels) for Docker
|
||||
# https://github.com/docker/metadata-action
|
||||
- name: Extract Docker metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||
|
||||
# Build and push Docker image with Buildx (don't push on PR)
|
||||
# https://github.com/docker/build-push-action
|
||||
- name: Build and push Docker image
|
||||
id: build-and-push
|
||||
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
|
||||
with:
|
||||
context: .
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
45
.github/workflows/update-cert.yml
vendored
Normal file
45
.github/workflows/update-cert.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
name: Update Cert
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 10 1 * *'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare Environment
|
||||
run: |
|
||||
curl https://get.acme.sh | sh -s email=my@example.com
|
||||
pip install -r requirements.txt
|
||||
|
||||
- name: Update Cert
|
||||
env:
|
||||
DP_Id: ${{ secrets.DP_Id }}
|
||||
DP_Key: ${{ secrets.DP_Key }}
|
||||
ACME_DNS_TYPE: ${{ secrets.ACME_DNS_TYPE }}
|
||||
ACME_DOMAIN: ${{ secrets.ACME_DOMAIN }}
|
||||
SECRETID: ${{ secrets.SECRETID }}
|
||||
SECRETKEY: ${{ secrets.SECRETKEY }}
|
||||
CDN_DOMAIN: ${{ secrets.CDN_DOMAIN }}
|
||||
CERT_HOME: /home/runner/.acme.sh
|
||||
ACME_HOME: /home/runner/.acme.sh
|
||||
WORK_DIR: .
|
||||
run: sh ./docker/update.sh
|
||||
|
||||
- name: Notification
|
||||
uses: monlor/bark-action@v3
|
||||
if: always()
|
||||
with:
|
||||
host: ${{ secrets.BARK_HOST}} # not required
|
||||
key: ${{ secrets.BARK_KEY }} # Your secret key
|
||||
title: Github Actions
|
||||
body: 'Your tencent cdn certs update ${{ job.status }}!'
|
||||
isArchive: 1
|
||||
url: 'github://github.com/${{ github.repository }}'
|
||||
group: Github
|
||||
icon: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png
|
||||
copy: ${{ steps.meta.outputs.tags }}
|
Reference in New Issue
Block a user