add link to menu bar to parameter recovery section #21
This file contains 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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: pandoc/latex # "ubuntu" is a more generic container | |
# using "pandoc/latex" because of dependencies | |
# used in the specific "build.sh" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Pushes to another repository | |
uses: cpina/github-action-push-to-another-repository@main | |
env: | |
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
with: | |
source-directory: '_book' | |
destination-github-username: 'venpopov' | |
destination-repository-name: 'bmm' | |
user-email: [email protected] | |
target-branch: gh-pages | |
target-directory: dev/dev-notes | |
- name: Pushes to another repository (2) | |
uses: cpina/github-action-push-to-another-repository@main | |
env: | |
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
with: | |
source-directory: '_book' | |
destination-github-username: 'venpopov' | |
destination-repository-name: 'bmm' | |
user-email: [email protected] | |
target-branch: gh-pages | |
target-directory: dev-notes |