Skip to content

Commit

Permalink
Fix the Github Action job of updating of the Dockerhub readme
Browse files Browse the repository at this point in the history
  • Loading branch information
fsidhoum committed Sep 10, 2022
1 parent 3b4e64d commit cd66461
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
name: Docker Hub Readme

on:
push:
branches: [main]
paths:
- README.md
- .github/workflows/dockerhub-description.yml

jobs:
dockerHubDescription:

update-dockerhub:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v2.1.0
uses: peter-evans/dockerhub-description@v3.1.0
env:
DOCKERHUB_USERNAME: rykcod
DOCKERHUB_PASSWORD: ${{ secrets.DOCKER_ACCOUNT_PASSWORD }}
DOCKERHUB_REPOSITORY: rykcod/massa
DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKERHUB_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
DOCKERHUB_REPOSITORY: ${{ github.repository }}

0 comments on commit cd66461

Please sign in to comment.