Skip to content

Commit

Permalink
Merge pull request #43 from startersclan/chore/ci-add-missing-update-…
Browse files Browse the repository at this point in the history
…dockerhub-description-job

Chore (ci): Add missing `update-dockerhub-description` job
  • Loading branch information
leojonathanoh authored Feb 6, 2023
2 parents 49166ef + fb2a6ff commit 1ca5f79
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci-master-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,17 @@ jobs:
tag: ${{ github.ref_name }} # E.g. 'master' or 'v1.2.3'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

update-dockerhub-description:
needs: [test, build]
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_REGISTRY_USER }}
password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }}
repository: startersclan/asp
short-description: ${{ github.event.repository.description }}

0 comments on commit 1ca5f79

Please sign in to comment.