Merge pull request #1020 from nep/patch-24 #238
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: Publish to Staging | |
on: | |
push: | |
branches: | |
- 6.dev | |
jobs: | |
build: | |
name: Build the HTML | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install NPM and build | |
run: | | |
npm install | |
npm run build | |
- name: Zip the docs | |
uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r EEDocs6.latest.zip build | |
- name: Move the zip | |
run: | | |
mkdir build/downloads | |
mv EEDocs6.latest.zip build/downloads/EEDocs6.latest.zip | |
- name: Rsync to Staging | |
uses: Burnett01/[email protected] | |
with: | |
switches: -avz | |
path: build/ | |
remote_path: ${{ secrets.DOCS_PATH_STAGING }} | |
remote_host: ${{ secrets.DOCS_HOST_STAGING }} | |
remote_user: ${{ secrets.DOCS_USER }} | |
remote_key: ${{ secrets.DOCS_USER_ID_RSA }} |