feat: get latest available backup at start #11
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: Update Docker Hub Description | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- README.md | |
- .github/workflows/dockerhub-description.yml | |
# this is to manually trigger the worklow | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Reason' | |
default: 'Manual launch' | |
jobs: | |
dockerHubDescription: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update Docker Hub Description | |
# This job updates the Docker Hub description and short-desc | |
# https://github.com/marketplace/actions/docker-hub-description | |
uses: peter-evans/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
short-description: ${{ github.event.repository.description }} |