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
|
2023-09-05 13:32:27 +02:00
|
|
|
uses: actions/checkout@v4
|
2021-08-29 04:04:40 +02:00
|
|
|
- name: Update Docker HUB Description
|
2024-01-26 12:37:20 +01:00
|
|
|
uses: peter-evans/dockerhub-description@v4
|
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
|