Browse Source

feat: update Docker Hub description

- Simplified branch specification in workflow file
- Renamed job to follow conventional naming
- Added explicit step name for checkout action
pull/22/head
Daniel Gibbs 2 years ago
parent
commit
667c690205
  1. 9
      .github/workflows/dockerhub-description.yml

9
.github/workflows/dockerhub-description.yml

@ -2,16 +2,17 @@ name: Update Docker Hub Description
on:
workflow_dispatch:
push:
branches:
- main
branches: main
paths:
- README.md
- .github/workflows/dockerhub-description.yml
jobs:
dockerHubDescription:
dockerhub-description:
name: Update Docker Hub Description
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3

Loading…
Cancel
Save