2021-08-29 04:04:40 +02:00
|
|
|
name: Update Docker Hub Description
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-push:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-02 12:21:43 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-08-29 04:04:40 +02:00
|
|
|
- name: Update Docker HUB Description
|
2022-03-22 12:20:19 +01:00
|
|
|
uses: peter-evans/dockerhub-description@v3
|
2021-08-29 04:04:40 +02:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
repository: lacledeslan/gamesvr-ut99
|
|
|
|
short-description: "Unreal Tournament (1999) Dedicated Server in Docker"
|
|
|
|
readme-filepath: ./readme.md
|