-
Notifications
You must be signed in to change notification settings - Fork 112
55 lines (53 loc) · 1.87 KB
/
description.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: GitHub Actions Description Updater
on:
push:
branches:
- main
paths:
- README.md
- .github/workflows/description.yml
jobs:
dockerHubDescription:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}
- name: Docker Hub Description
uses: christian-korneck/update-container-description-action@v1
env:
DOCKER_USER: ${{ secrets.DOCKER_HUB_USERNAME }}
DOCKER_PASS: ${{ secrets.DOCKER_HUB_TOKEN }}
with:
destination_container_repo: snowdreamtech/frpc
provider: dockerhub
short_description: ${{ github.event.repository.description }}
readme_file: "README.md"
- name: Docker Hub Description
uses: christian-korneck/update-container-description-action@v1
env:
DOCKER_USER: ${{ secrets.DOCKER_HUB_USERNAME }}
DOCKER_PASS: ${{ secrets.DOCKER_HUB_TOKEN }}
with:
destination_container_repo: snowdreamtech/frps
provider: dockerhub
short_description: ${{ github.event.repository.description }}
readme_file: "README.md"
- name: Quay.io Description
uses: christian-korneck/update-container-description-action@v1
env:
DOCKER_APIKEY: ${{ secrets.QUAY_API_TOKEN }}
with:
destination_container_repo: quay.io/snowdreamtech/frpc
provider: quay
readme_file: "README.md"
- name: Quay.io Description
uses: christian-korneck/update-container-description-action@v1
env:
DOCKER_APIKEY: ${{ secrets.QUAY_API_TOKEN }}
with:
destination_container_repo: quay.io/snowdreamtech/frps
provider: quay
readme_file: "README.md"