Deployed b4977f1 to dev with MkDocs 1.6.1 and mike 2.1.3 #174
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Migrate Pipeline | |
| on: | |
| push: | |
| branches: | |
| - documentation | |
| jobs: | |
| build: | |
| name: Migrate docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Push to ABCH web | |
| id: publish_docs | |
| uses: Ackee-Blockchain/github-action-push-to-another-repository@1.0.0 | |
| env: | |
| SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
| with: | |
| source-directory: . | |
| destination-github-username: 'Ackee-Blockchain' | |
| destination-repository-name: 'firebase-abch-web' | |
| target-branch: master | |
| target-directory: 'public/wake/docs' |