We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f95680 commit e88c86eCopy full SHA for e88c86e
.github/workflows/deploy.yaml
@@ -12,18 +12,14 @@ on:
12
workflow_dispatch:
13
14
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
15
-permissions:
16
- contents: read
17
- pages: write
18
- id-token: write
19
-
20
-# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
21
-# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
22
-concurrency:
23
- group: pages
24
- cancel-in-progress: false
25
26
+ jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0 # Not needed if lastUpdated is not enabled
27
# Deployment job
28
deploy:
29
needs: build
0 commit comments