Skip to content

Commit

Permalink
add sync readme action
Browse files Browse the repository at this point in the history
  • Loading branch information
CraightonH committed Apr 24, 2023
1 parent 4cf16b7 commit cc356b0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/sync_readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sync Readme

on:
push:
branches:
- main

jobs:
sync:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Sync
uses: ms-jpq/sync-dockerhub-readme@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
repository: ${{ secrets.DOCKER_HUB_USERNAME }}/bookworm
readme: "./README.md"

0 comments on commit cc356b0

Please sign in to comment.