We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6498b80 commit ad2a5b4Copy full SHA for ad2a5b4
.github/workflows/site.yml
@@ -3,23 +3,29 @@ name: Site
3
4
on:
5
push:
6
- branches:
7
- - main
+ branches: [$default-branch]
+ workflow_dispatch:
8
9
env:
10
NODE: 22.x
11
12
+concurrency:
13
+ group: "pages"
14
+ cancel-in-progress: false
15
+
16
+permissions:
17
+ contents: read
18
+ pages: write
19
+ id-token: write
20
21
jobs:
22
deploy:
23
name: Deploy
24
runs-on: ubuntu-latest
25
if: github.repository == 'typo3/typo3.icons'
26
environment:
27
name: github-pages
- permissions:
- contents: read
- pages: write
- id-token: write
28
+ url: ${{ steps.deployment.outputs.page_url }}
29
30
steps:
31
- name: Checkout Code
0 commit comments