Skip to content

Commit

Permalink
chore: address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zepfred committed Nov 14, 2024
1 parent c68506a commit 01e69c1
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/pull_request_secure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,9 @@ jobs:

build_documentation:
runs-on: ubuntu-latest
needs: approval_required
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
steps:
- name: Checkout frontend
id: checkout-frontend
Expand All @@ -271,6 +274,11 @@ jobs:
token: ${{ secrets.JRELEASER_GITHUB_TOKEN }} # Safe; only used to clone the repo and not stored in the fork.
fetch-depth: 0 # Otherwise merge will fail on account of not having history.

- name: Checkout timefold-solver
uses: actions/checkout@v4
with:
path: ./timefold-solver

- name: Set up NodeJs
uses: actions/setup-node@v4
with:
Expand All @@ -281,7 +289,9 @@ jobs:
env:
GIT_CREDENTIALS: ${{ secrets.GIT_CREDENTIALS }}
run: |
sed -i 's/tags:\s*\[v[0-9.]*,\s*v0.8.42]/tags: \[main]/' apps/docs/antora-playbook.yml
cp ${{ github.workspace }}/timefold-solver/docs/src/antora-playbook-template.yml apps/docs/antora-playbook.yml
sed -i "s/REPLACEME/$BRANCH_NAME/" apps/docs/antora-playbook.yml
cat apps/docs/antora-playbook.yml
npm ci
npm run build -- --filter docs
Expand All @@ -293,7 +303,8 @@ jobs:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
workingDirectory: ./apps/docs
command: pages deploy ./public-serve --project-name=timefold-docs --branch=${{ github.ref }}
# command: pages deploy ./public-serve --project-name=timefold-docs --branch=${{ github.ref }}
command: echo "deploy"

sonarcloud:
needs: approval_required
Expand Down

0 comments on commit 01e69c1

Please sign in to comment.