Skip to content

Commit 89d0d55

Browse files
committed
Updated github actions secrets usage
1 parent fbd621d commit 89d0d55

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/update-conf-2024-deploy-dev.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,5 @@ jobs:
2323
arm_client_secret: ${{ secrets.ARM_CLIENT_SECRET }}
2424
arm_tenant_id: ${{ secrets.ARM_TENANT_ID }}
2525
arm_subscription_id: ${{ secrets.ARM_SUBSCRIPTION_ID }}
26-
packages_read_token: ${{ secrets.PACKAGES_READ_WRITE_TOKEN }}
2726

2827

.github/workflows/update-conf-2024-deploy.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ on:
2626
required: true
2727
arm_subscription_id:
2828
required: true
29-
packages_read_token:
30-
required: true
3129
jobs:
3230
deploy-pulumi-and-artifacts:
3331
runs-on: ubuntu-latest
@@ -82,3 +80,11 @@ jobs:
8280

8381
- name: Cake Frosting - Deploy
8482
run: dotnet run --project ${{ env.ROOT_DIRECTORY_PATH }}/deploy/deploy/Deploy.csproj -- --configuration=${{ env.CONFIGURATION }} --PulumiStackName=${{ inputs.pulumi_stack_name }} --ReleaseVersion=${{ inputs.release_tag_id }} --WorkspacePath=${{ github.workspace }}
83+
84+
- name: Repository Dispatch - Trigger Dev Deployment
85+
uses: benc-uk/workflow-dispatch@v1
86+
with:
87+
workflow: Deploy-Dev
88+
token: ${{ secrets.TRIGGER_WORKFLOW_PAT_AL }}
89+
inputs: '{"release_tag_id": "${{ github.run_id }}"}'
90+

0 commit comments

Comments
 (0)