Skip to content

folder typo

folder typo #91

Workflow file for this run

name: (main) push to external repo
on:
push:
branches:
- main
jobs:
push-to-external-repo:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: push to external repository
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.SSH_DEPLOY_KEY }}
publish_dir: .
external_repository: codingclubgct/website
publish_branch: master
allow_empty_commit: true
push-to-external-repo-2:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: push to external repository
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.SSH_DEPLOY_KEY_SECONDARY }}
publish_dir: .
external_repository: codingclubgct/website-1
publish_branch: master
allow_empty_commit: true