Added build and test docs on PR (#97) #1
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 documentation and indexes | ||
on: | ||
push: | ||
branches: ["main"] | ||
workflow_dispatch: | ||
permissions: | ||
id-token: write | ||
pages: write | ||
env: | ||
INSTANCE: 'kotlinx-rpc/rpc' | ||
ARTIFACT: 'webHelpRPC2-all.zip' | ||
DOCKER_VERSION: '241.15989' | ||
ALGOLIA_ARTIFACT: 'algolia-indexes-RPC.zip' | ||
ALGOLIA_APP_NAME: 'MMA5Z3JT91' | ||
ALGOLIA_INDEX_NAME: 'prod_kotlin_rpc' | ||
ALGOLIA_KEY: '${{ secrets.ALGOLIA_KEY }}' | ||
CONFIG_JSON_PRODUCT: 'kotlinx-rpc' | ||
CONFIG_JSON_VERSION: '0.1.0' | ||
jobs: | ||
build-and-test: | ||
uses: ./.github/workflows/build-test-docs.yml | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
needs: [ build, test ] | ||
Check failure on line 31 in .github/workflows/deploy-docs.yml GitHub Actions / Deploy documentation and indexesInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: kotlinx-rpc | ||
- name: Unzip artifact | ||
run: unzip -O UTF-8 -qq '${{ env.ARTIFACT }}' -d dir | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v4 | ||
- name: Package and upload Pages artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: dir | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 | ||
publish-indexes: | ||
needs: [ build, test, deploy ] | ||
runs-on: ubuntu-latest | ||
container: | ||
image: registry.jetbrains.team/p/writerside/builder/algolia-publisher:2.0.32-3 | ||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: kotlinx-rpc | ||
- name: Unzip artifact | ||
run: | | ||
unzip -O UTF-8 -qq '${{ env.ALGOLIA_ARTIFACT }}' -d algolia-indexes | ||
env algolia-key='${{env.ALGOLIA_KEY}}' java -jar /opt/builder/help-publication-agent.jar \ | ||
update-index \ | ||
--application-name '${{env.ALGOLIA_APP_NAME}}' \ | ||
--index-name '${{env.ALGOLIA_INDEX_NAME}}' \ | ||
--product '${{env.CONFIG_JSON_PRODUCT}}' \ | ||
--version '${{env.CONFIG_JSON_VERSION}}' \ | ||
--index-directory algolia-indexes/ \ | ||
2>&1 | tee algolia-update-index-log.txt |