update interpreter version to 1.1.1-0-SNAPSHOT #35
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 Website | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: # allow manual deployment | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build-apidoc-and-demo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: '21' | |
- run: ./gradlew :kotlite-apidoc:generateStdlibApiDoc :kotlite-demo:jsBrowserDistribution | |
- run: mkdir -p doc/output | |
- run: cp ./apidoc/build/apidoc/API.adoc ./doc/usermanual/ | |
- run: cp -R ./demo/build/dist/js/productionExecutable ./doc/output/demo | |
# reduce size of artifacts while keeping files needed in original locations | |
- run: mv ./stdlib/build/generated/common ./mytemp | |
- run: ./gradlew clean && rm -Rf .gradle | |
# "mkdirs" command is not available | |
- run: mkdir ./stdlib/build && mkdir ./stdlib/build/generated && mv ./mytemp ./stdlib/build/generated/common | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: doc-output | |
path: . | |
retention-days: 1 | |
build-main-doc: | |
needs: build-apidoc-and-demo | |
runs-on: ubuntu-latest | |
container: | |
image: uwebarthel/asciidoctor | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: doc-output | |
- run: ls -al | |
- run: cd doc && ls -al | |
- run: ls -al | |
- run: cd doc && asciidoctor -r asciidoctor-diagram -D "output" usermanual/index.adoc | |
- run: cd doc && cp -R usermanual/media output/media | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: doc-output2 | |
path: doc | |
retention-days: 1 | |
deploy: | |
needs: build-main-doc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: doc-output2 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: 'output/' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |