Skip to content

Commit

Permalink
chore: change itowns.github.io deploying
Browse files Browse the repository at this point in the history
  • Loading branch information
gchoqueux authored and mgermerie committed Dec 16, 2021
1 parent 7db9bcb commit 870299f
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/integration.yml
Expand Up @@ -103,14 +103,34 @@ jobs:
cp -R examples itowns/
cp -R buildDocs itowns/docs
# Deploy to itowns.github.io
- name: Deploy to itowns.github.io
# Deploy to itowns.github.io dist
- name: Deploy to itowns.github.io dist
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: iTowns/itowns.github.io
publish_dir: ./itowns
destination_dir: ./itowns
publish_dir: ./itowns/dist
destination_dir: ./itowns/dist
publish_branch: master
enable_jekyll: true
# Deploy to itowns.github.io examples
- name: Deploy to itowns.github.io examples
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: iTowns/itowns.github.io
publish_dir: ./itowns/examples
destination_dir: ./itowns/examples
publish_branch: master
enable_jekyll: true
# Deploy to itowns.github.io docs
- name: Deploy to itowns.github.io docs
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: iTowns/itowns.github.io
publish_dir: ./itowns/docs
destination_dir: ./itowns/docs
publish_branch: master
enable_jekyll: true

Expand Down

0 comments on commit 870299f

Please sign in to comment.