Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andyoknen authored Aug 5, 2022
1 parent 0282d34 commit 1989f40
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
path: assets/
retention-days: 1

deploy:
deploy_win:
runs-on: docs-en-deploy
needs: build
steps:
Expand All @@ -45,3 +45,15 @@ jobs:
run: |
cp -Recurse -Force ./build/site/* c:/inetpub/wwwroot/docs/en/
cp -Recurse -Force ./assets/* c:/inetpub/wwwroot/docs/ -Exclude @("site")
deploy_docs_bastyon_com:
runs-on: docs.bastyon.com
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@v2

- name: Copy artifacts
run: |
cp -r ./build/site/* /data/docs/en/
cp -r !(site) ./assets/* /data/docs/

0 comments on commit 1989f40

Please sign in to comment.