Skip to content

parkhub/parkdoc-update-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parkdoc Update Action

Generates all documentation for parkhub repos with topic golib. Uploads them to the parkdoc s3 folder and invalidates cache.

To add this to your repo you will need 3 secrets, you aws credentials and a github access token

  • AWS_ACCESS_KEY_ID
  • AWS_SECRET_ACCESS_KEY
  • TOKEN

Then create and action.yml like the following

name: Update Godoc

on:
  push:
    branches: [ main ]

  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: parkhub/parkdoc-update-action@main
        name: Run updates
        env:
          AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
          AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
          TOKEN: ${{ secrets.TOKEN }}

About

update parkdock with your new documentation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published