forked from entur/gha-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 957 Bytes
/
Copy pathcd.yml
File metadata and controls
32 lines (29 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: release
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
issues: write
jobs:
# needed for status checks pr approvals
update-firebase-hosting-deploy-doc:
name: Update Firebase Hosting Deploy Doc
uses: entur/gha-meta/.github/workflows/auto-doc.yml@v1
with:
workflow_file: .github/workflows/firebase-hosting-deploy.yml
readme_file: README-firebase-hosting-deploy.md
update-firebase-hosting-preview-doc:
name: Update Firebase Hosting Preview Doc
needs: [update-firebase-hosting-deploy-doc]
uses: entur/gha-meta/.github/workflows/auto-doc.yml@v1
with:
workflow_file: .github/workflows/firebase-hosting-preview.yml
readme_file: README-firebase-hosting-preview.md
# / needed for status checks pr approvals
release:
name: Create Release
needs: [update-firebase-hosting-preview-doc]
uses: entur/gha-meta/.github/workflows/release.yml@v1