Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Added workflow for generating the certificate for signing #1192

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6bcf2c4
chore: Added workflow for generating the certificate for signing
tiwarishubham635 Dec 6, 2023
ef69162
Update test-and-deploy.yml
tiwarishubham635 Dec 6, 2023
09ae97c
Update test-and-deploy.yml
tiwarishubham635 Dec 6, 2023
6facbaf
Update test-and-deploy.yml
tiwarishubham635 Dec 6, 2023
b9c7ff3
Update test-and-deploy.yml
tiwarishubham635 Dec 6, 2023
453dc2b
Update test-and-deploy.yml
tiwarishubham635 Dec 6, 2023
4a67af1
Update test-and-deploy.yml
tiwarishubham635 Dec 6, 2023
0b12b21
Update test-and-deploy.yml
tiwarishubham635 Dec 7, 2023
81e6797
Update test-and-deploy.yml
tiwarishubham635 Dec 7, 2023
111686b
Update test-and-deploy.yml
tiwarishubham635 Dec 7, 2023
5e19999
Update test-and-deploy.yml
tiwarishubham635 Dec 7, 2023
e64629b
Update test-and-deploy.yml
tiwarishubham635 Dec 7, 2023
637a54a
Update test-and-deploy.yml
tiwarishubham635 Dec 7, 2023
a175449
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
71a05b1
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
b2abaca
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
9b5421e
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
0ce2de6
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
6bc60e8
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
a9916ec
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
bae9c65
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
8b9ed5f
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
04d009c
Update test-and-deploy.yml
tiwarishubham635 Dec 8, 2023
7c64e5f
Update test-and-deploy.yml
tiwarishubham635 Jan 11, 2024
2b41260
chore: Update LICENSE (#1193) (#1194)
tiwarishubham635 Jan 11, 2024
d810b31
chore: Update LICENSE (#1193) (#1195)
tiwarishubham635 Jan 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,24 @@ jobs:
run: make test-docker release
- run: bash <(curl -s https://codecov.io/bash)

import-certificate:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: make install
- name: import-certificate
run: |
New-Item -ItemType directory -Path certificate
Set-Content -Path certificate\certificate.txt -Value '${{ secrets.CODE_SIGNING_CERTIFICATE }}'
certutil -decode certificate\certificate.txt certificate\certificate.pfx

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: certificate.pfx
path: certificate\certificate.pfx
retention-days: 1

deploy:
name: Deploy
if: success() && github.ref_type == 'tag'
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (C) 2023, Twilio SendGrid, Inc. <[email protected]>
Copyright (C) 2024, Twilio SendGrid, Inc. <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
Loading