Adding Support for defining different boundary region on outer shell … #186
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 ABLATE.dev workflow | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
# Build job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# checkout the latest commit of the code | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# setup docker image of ablate | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build the docker image | |
run: | | |
docker buildx build .\ | |
--file DockerTestFile \ | |
--tag framework-doc-image \ | |
--load | |
# copy the configured docs from the test image container | |
- name: Configure documentation | |
run: | | |
id=$(docker create framework-doc-image) | |
docker cp $id:/source/docs/ ./docs-configure | |
docker rm -v $id | |
# now build the pages with the standard Build with Jekyll actions | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Build with Jekyll | |
uses: actions/jekyll-build-pages@v1 | |
with: | |
source: ./docs-configure | |
destination: ./_site | |
# Upload all the artifacts | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
# Deployment job | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |