From 21101778847c2541d40342e5150ac30f28619c4a Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Wed, 9 Mar 2022 08:02:34 +0100 Subject: [PATCH] :wrench: Updating files to keep up with template --- .editorconfig | 12 +++++++++ .github/workflows/Deploy.yml | 50 +++++++++++++++++++++++++----------- getdeps.sh | 1 + 3 files changed, 48 insertions(+), 15 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ad4c311 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = false diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index 6312aa5..51398a2 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -14,21 +14,24 @@ jobs: build-and-deploy: runs-on: ubuntu-latest steps: + - name: Checkout uses: actions/checkout@v2 with: persist-credentials: false - # To have a preview you need to set up a netlify domain and to have access to the repo, so it can't be done automatically - # - name: Fix URLs for PR preview deployment (pull request previews) - # if: github.event_name == 'pull_request' - # run: | - # echo "PREVIEW_FRANKLIN_WEBSITE_URL=https://missing.netlify.app/previews/PR${{ github.event.number }}/" >> $GITHUB_ENV - # echo "PREVIEW_FRANKLIN_PREPATH=previews/PR${{ github.event.number }}" >> $GITHUB_ENV + + - name: Fix URLs for PR preview deployment (pull request previews) + if: github.event_name == 'pull_request' + run: | + echo "PREVIEW_FRANKLIN_WEBSITE_URL=https://understanding-the-solver-output.netlify.app/previews/PR${{ github.event.number }}/" >> $GITHUB_ENV + echo "PREVIEW_FRANKLIN_PREPATH=previews/PR${{ github.event.number }}" >> $GITHUB_ENV + # NOTE: Python is necessary for the pre-rendering (minification) step - name: Install python uses: actions/setup-python@v2 with: python-version: '3.9' + # NOTE: Here you can install dependencies such as matplotlib if you use # packages such as PyPlot. # - run: pip install matplotlib @@ -36,8 +39,10 @@ jobs: uses: julia-actions/setup-julia@v1 with: version: 1 + - name: Get dependencies from jso-docs.github.io run: bash getdeps.sh + - name: Build env: GKSwstype: "100" #https://discourse.julialang.org/t/generation-of-documentation-fails-qt-qpa-xcb-could-not-connect-to-display/60988 @@ -46,18 +51,33 @@ jobs: using NodeJS; run(`$(npm_cmd()) install`); run(`$(npm_cmd()) run css-build`); using Franklin; optimize(prerender=false, suppress_errors=false)' - # - name: Deploy (preview) - # if: github.event_name == 'pull_request' && github.repository == github.event.pull_request.head.repo.full_name # if this build is a PR build and the PR is NOT from a fork - # uses: JamesIves/github-pages-deploy-action@releases/v3 - # with: - # BRANCH: gh-preview # The branch where the PRs previews are stored - # FOLDER: __site - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # TARGET_FOLDER: "previews/PR${{ github.event.number }}" # The website preview is going to be stored in a subfolder + + - name: Deploy (preview) + if: github.event_name == 'pull_request' && github.repository == github.event.pull_request.head.repo.full_name # if this build is a PR build and the PR is NOT from a fork + uses: JamesIves/github-pages-deploy-action@releases/v3 + with: + BRANCH: gh-preview # The branch where the PRs previews are stored + FOLDER: __site + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + TARGET_FOLDER: "previews/PR${{ github.event.number }}" # The website preview is going to be stored in a subfolder + - name: Deploy (main) - if: github.event_name == 'push' + if: github.event_name != 'pull_request' uses: JamesIves/github-pages-deploy-action@releases/v3 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages # Replace here the branch where your website is deployed FOLDER: __site + + pr_comment: + needs: build-and-deploy + runs-on: ubuntu-latest + steps: + - name: 'Comment PR' + uses: actions/github-script@0.3.0 + if: github.event_name == 'pull_request' && github.repository == github.event.pull_request.head.repo.full_name # if this is a pull request build AND the pull request is NOT made from a fork + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + script: | + const { issue: { number: issue_number }, repo: { owner, repo } } = context; + github.issues.createComment({ issue_number, owner, repo, body: 'Once the build has completed, you can preview your PR at this URL: https://understanding-the-solver-output.netlify.app/previews/PR${{ github.event.number }}/' }); diff --git a/getdeps.sh b/getdeps.sh index 27ce870..b9aebf8 100644 --- a/getdeps.sh +++ b/getdeps.sh @@ -3,6 +3,7 @@ wget https://github.com/jso-docs/jso-docs.github.io/archive/refs/heads/main.zip unzip main.zip if [ -z "$CI" ]; then + rm -rf _assets _layout _libs _sass mv -f jso-docs.github.io-main/{_assets,_layout,_sass,_libs,package.json,config.md,utils.jl} . else mv -f jso-docs.github.io-main/{_layout,_libs,_sass,package.json,config.md,utils.jl} .