Merge pull request #184 from firebolt-db/arushi-firebolt-patch-1 #433
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: Production Build and Deploy | |
on: | |
push: | |
branches: [ gh-pages ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
# https://github.com/actions/checkout#push-a-commit-using-the-built-in-token | |
- name: Set GitHub Actions as Commit Author | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email [email protected] | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
with: | |
path: 'build' | |
- name: Build | |
run: | | |
cd build | |
git checkout gh-pages | |
git pull https://github.com/firebolt-db/firebolt-db.github.io.git gh-pages | |
git push origin | |
- name: Checkout Staging Target | |
uses: actions/checkout@v2 | |
with: | |
repository: firebolt-analytics/firebolt-docs-staging | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
path: 'deploy' | |
- name: Push files to target | |
run: | | |
cp -r build/* deploy | |
cd deploy | |
git add -A | |
git commit -m $GITHUB_SHA | |
git push | |
- name: Checkout Guru Synch Target | |
uses: actions/checkout@v2 | |
with: | |
repository: firebolt-analytics/firebolt-doc-to-guru | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
path: 'deploysync' | |
- name: Push files to target | |
run: | | |
cp -r build/* deploysync | |
cd deploysync | |
git add -A | |
git commit -m $GITHUB_SHA | |
git push | |
- name: Checkout Preview Target | |
uses: actions/checkout@v2 | |
with: | |
repository: firebolt-analytics/firebolt-docs-preview-cntrbtr | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
path: 'preview' | |
- name: Push files to target | |
run: | | |
cp -r build/* preview | |
cd preview | |
git add -A | |
git commit -m $GITHUB_SHA | |
git push |