-
Notifications
You must be signed in to change notification settings - Fork 4
30 lines (29 loc) · 1003 Bytes
/
release.yml
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
name: Release
on:
push:
branches:
- main
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: rentman-dashboard
changelog-types: '[{"type":"feat","section":"New","hidden":false},{"type":"fix","section":"Changed and fixed","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# if: ${{ steps.release.outputs.release_created }}
# - name: Azure Login
# uses: azure/login@v1
# with:
# creds: ${{ secrets.AZURE_CREDENTIALS }}
# if: ${{ steps.release.outputs.release_created }}
# - name: Azure CLI script
# uses: azure/CLI@v1
# with:
# inlineScript: |
# az webapp up --resource-group frontendfestival --name FrontendFestival --runtime "NODE|18-lts"