Skip to content

Commit 4b24a36

Browse files
chore: import-certificate added as prerequisite for deploy (#1197)
1 parent 64755fc commit 4b24a36

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,17 @@ jobs:
6161
deploy:
6262
name: Deploy
6363
if: success() && github.ref_type == 'tag'
64-
needs: [ test ]
64+
needs: [ test, import-certificate ]
6565
runs-on: ubuntu-latest
6666
steps:
6767
- name: Checkout sendgrid-csharp
6868
uses: actions/checkout@v2
6969

70+
- name: Download code signing certificate
71+
uses: actions/download-artifact@v3
72+
with:
73+
name: certificate.pfx
74+
7075
- name: Setup .NET Core SDK
7176
uses: actions/[email protected]
7277
with:

0 commit comments

Comments
 (0)