Arrow support is now stable and ready for production (#43) #44
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: Deploy webpage | |
# We combine both `main` and `upcoming` into a single webpage | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'upcoming' | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- uses: actions/configure-pages@v3 | |
id: setup-pages | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
path: main | |
- name: Checkout upcoming | |
uses: actions/checkout@v3 | |
with: | |
ref: upcoming | |
path: upcoming | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'latest' | |
cache: yarn | |
cache-dependency-path: | | |
main/website/yarn.lock | |
upcoming/website/yarn.lock | |
- name: Install dependencies (main) | |
working-directory: main/website | |
run: yarn install --frozen-lockfile | |
- name: Download language docs | |
working-directory: main/website | |
run: yarn ts-node download_links.ts docs_py docs_cxx docs_java docs_dotnet | |
- name: Build webpage for `main` branch | |
working-directory: main/website | |
run: yarn build | |
env: | |
GITHUB_ORIGIN: ${{ steps.setup-pages.outputs.origin }} | |
GITHUB_BASE_PATH: ${{ steps.setup-pages.outputs.base_path }} | |
- name: Install dependencies (upcoming) | |
working-directory: upcoming/website | |
run: yarn install --frozen-lockfile | |
- name: Build webpage for `upcoming` branch | |
working-directory: upcoming/website | |
run: yarn build | |
env: | |
GITHUB_ORIGIN: ${{ steps.setup-pages.outputs.origin }} | |
GITHUB_BASE_PATH: ${{ steps.setup-pages.outputs.base_path }}/upcoming | |
IS_UPCOMING: '1' | |
- name: Combine `main`, `upcoming` and language docs | |
run: | | |
mv main/website/build combined | |
mv upcoming/website/build combined/upcoming | |
mkdir combined/lang_docs | |
unzip main/website/docs_py.zip -d combined/lang_docs | |
mv combined/lang_docs/tableauhyperapi-py-docs-* combined/lang_docs/py | |
unzip main/website/docs_cxx.zip -d combined/lang_docs | |
mv combined/lang_docs/tableauhyperapi-cxx-docs-* combined/lang_docs/cxx | |
unzip main/website/docs_java.zip -d combined/lang_docs | |
mv combined/lang_docs/tableauhyperapi-java-docs-* combined/lang_docs/java | |
unzip main/website/docs_dotnet.zip -d combined/lang_docs | |
mv combined/lang_docs/tableauhyperapi-dotnet-docs-* combined/lang_docs/dotnet | |
- name: Upload webpage artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: 'combined' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |