b5f2932bed
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
24 lines
519 B
YAML
24 lines
519 B
YAML
name: Doc
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'doc/**'
|
|
|
|
jobs:
|
|
copy-file:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Pushes docs file
|
|
uses: slumbering/copy_file_to_another_repo_action@main
|
|
env:
|
|
API_TOKEN_GITHUB: ${{ secrets.DAGGERCI_TOKEN }}
|
|
with:
|
|
source_file: 'doc/'
|
|
destination_repo: 'dagger/launch.dagger.io'
|
|
destination_folder: 'site/'
|
|
user_email: 'noreply@dagger.io'
|
|
user_name: 'dagger-bot'
|