Skip to content

Commit

Permalink
add readmesync action
Browse files Browse the repository at this point in the history
  • Loading branch information
kkalev committed Nov 26, 2023
1 parent b0d3e11 commit 261eeb5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/readmesync.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: readme-sync
run-name: Sync README file between GitHub and Docker Hub

on:
workflow_dispatch:
push:
branches:
- "main"
paths:
- 'README.md'

jobs:
readme-sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Sync to Docker Hub
uses: meeDamian/sync-readme@v1.0.6
with:
user: ${{ secrets.DOCKER_HUB_USERNAME }}
pass: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
slug: gunet/puppeteer
readme: README.md
description: true

0 comments on commit 261eeb5

Please sign in to comment.