Skip to content

Commit

Permalink
Optimize caching and rerun inspections
Browse files Browse the repository at this point in the history
  • Loading branch information
blaubaer committed Oct 11, 2024
1 parent 664c11d commit 7eb075d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,16 @@ jobs:
mkdocs --color build -c
- name: Deploy
id: deploy
if: contains(github.event.pull_request.labels.*.name, 'test_publish')
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
command: pages deploy --commit-dirty=true --project-name=bifroest-engity-org var/doc

- name: print deployment-url
if: contains(github.event.pull_request.labels.*.name, 'test_publish')
env:
DEPLOYMENT_URL: ${{ steps.deploy.outputs.deployment-url }}
run: |
echo "Documentation is available at ${DEPLOYMENT_URL}" >> "$GITHUB_STEP_SUMMARY"

0 comments on commit 7eb075d

Please sign in to comment.