diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 683b2c5..564922c 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -11,7 +11,7 @@ on: forceDocsUpload: description: 'Force API docs upload' required: true - default: false + default: true type: boolean jobs: @@ -30,11 +30,11 @@ jobs: run: make render - name: Setup pages - if: ${{ inputs.forceDocsUpload || ( github.ref == 'refs/heads/main' ) }} + # if: ${{ inputs.forceDocsUpload || ( github.ref == 'refs/heads/main' ) }} uses: actions/configure-pages@v3 - name: Upload documentation artifact - if: ${{ inputs.forceDocsUpload || ( github.ref == 'refs/heads/main' ) }} + # if: ${{ inputs.forceDocsUpload || ( github.ref == 'refs/heads/main' ) }} uses: actions/upload-pages-artifact@v2 with: path: './api/docs' @@ -48,7 +48,7 @@ jobs: id-token: write runs-on: ubuntu-22.04 needs: CI - if: ${{ inputs.forceDocsUpload || ( github.ref == 'refs/heads/main' ) }} + # if: ${{ inputs.forceDocsUpload || ( github.ref == 'refs/heads/main' ) }} steps: - name: Deploy documentation to GitHub Pages id: deployment