We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64755fc commit 4b24a36Copy full SHA for 4b24a36
1 file changed
.github/workflows/test-and-deploy.yml
@@ -61,12 +61,17 @@ jobs:
61
deploy:
62
name: Deploy
63
if: success() && github.ref_type == 'tag'
64
- needs: [ test ]
+ needs: [ test, import-certificate ]
65
runs-on: ubuntu-latest
66
steps:
67
- name: Checkout sendgrid-csharp
68
uses: actions/checkout@v2
69
70
+ - name: Download code signing certificate
71
+ uses: actions/download-artifact@v3
72
+ with:
73
+ name: certificate.pfx
74
+
75
- name: Setup .NET Core SDK
76
uses: actions/setup-dotnet@v1.8.2
77
with:
0 commit comments