-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-deploy.yml
39 lines (34 loc) · 1.14 KB
/
template-deploy.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
31
32
33
34
35
36
37
38
39
name: Template Build and Deploy
on:
workflow_call:
inputs:
# The environment to deploy to (Staging or Production)
environment:
required: true
type: string
secrets:
AZURECLIENTID:
required: true
AZURECLIENTSECRET:
required: true
AZURESUBSCRIPTIONID:
required: true
AZURETENANTID:
required: true
jobs:
execute-parallel-pipeline:
environment: ${{ inputs.environment }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: azure/login@v2
with:
creds: '{"clientId":"${{ secrets.AZURECLIENTID }}","clientSecret":"${{ secrets.AZURECLIENTSECRET }}","subscriptionId":"${{ secrets.AZURESUBSCRIPTIONID }}","tenantId":"${{ secrets.AZURETENANTID }}"}'
- name: Set env
run: echo "ParallelPipelinesEnvironment=${{ inputs.environment }}" >> $GITHUB_ENV
- name: Dotnet Run Pipeline
run: dotnet run -c Release --project ./iac/Deploy/Deploy.csproj ### Update to your new deploy project path