diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-12-15 23:54:35 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-12-15 23:54:35 -0800 |
| commit | 9519ed41aa34c8bea10f081190847339c2a9d9ce (patch) | |
| tree | 052e4d1480a016dfd4ded1f49af465913a520b6d /.github | |
| parent | 1c9010916dc308b9a7e373d239ecca30fc29dd28 (diff) | |
remove build script
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/deploy.yml | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index ac6887a..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,83 +0,0 @@ -name: Build documentation - -on: - # If specified, the workflow will be triggered automatically once you push to the `main` branch. - # Replace `main` with your branch’s name - push: - branches: ["main"] - # Specify to run a workflow manually from the Actions tab on GitHub - workflow_dispatch: - -# Gives the workflow permissions to clone the repo and create a page deployment -permissions: - id-token: write - pages: write - -env: - # Name of module and id separated by a slash - INSTANCE: Writerside/hi - # Replace HI with the ID of the instance in capital letters - ARTIFACT: webHelpHI2-all.zip - # Writerside docker image version - DOCKER_VERSION: 232.10275 - # Add the variable below to upload Algolia indexes - # Replace HI with the ID of the instance in capital letters - ALGOLIA_ARTIFACT: algolia-indexes-HI.zip - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Build Writerside docs using Docker - uses: JetBrains/writerside-github-action@v4 - with: - instance: ${{ env.INSTANCE }} - artifact: ${{ env.ARTIFACT }} - docker-version: ${{ env.DOCKER_VERSION }} - - - name: Upload documentation - uses: actions/upload-artifact@v3 - with: - name: docs - path: | - artifacts/${{ env.ARTIFACT }} - artifacts/report.json - retention-days: 7 - - # Add the step below to upload Algolia indexes - - name: Upload algolia-indexes - uses: actions/upload-artifact@v3 - with: - name: algolia-indexes - path: artifacts/${{ env.ALGOLIA_ARTIFACT }} - retention-days: 7 - - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Download artifact - uses: actions/download-artifact@v3 - with: - name: docs - - - name: Unzip artifact - run: unzip -O UTF-8 -qq ${{ env.ARTIFACT }} -d dir - - - name: Setup Pages - uses: actions/configure-pages@v2 - - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: dir - - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v1
\ No newline at end of file |
