File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ jobs:
141
141
TEST_GG_VALID_TOKEN_IGNORE_SHA : ${{ secrets.TEST_GG_VALID_TOKEN_IGNORE_SHA }}
142
142
TEST_UNKNOWN_SECRET : ${{ secrets.TEST_UNKNOWN_SECRET }}
143
143
144
- build_os_packages :
144
+ build_release_assets :
145
145
uses : ./.github/workflows/build_release_assets.yml
146
146
secrets : inherit
147
147
@@ -202,3 +202,25 @@ jobs:
202
202
registry : docker.pkg.github.com
203
203
repository : gitguardian/ggshield/ggshield
204
204
tags : unstable
205
+
206
+ fake_push_to_chocolatey :
207
+ needs : build_release_assets
208
+ name : Fake Push to Chocolatey
209
+ runs-on : windows-latest
210
+ steps :
211
+ - name : Checkout
212
+ uses : actions/checkout@v4
213
+
214
+ - name : Download nupkg
215
+ id : download-nupkg
216
+ uses : actions/download-artifact@v4
217
+ with :
218
+ pattern : os-packages-windows-*
219
+ path : packages
220
+
221
+ - name : Push to Chocolatey
222
+ shell : bash
223
+ run : |
224
+ ls
225
+ find packages
226
+ echo scripts/chocolatey/push packages/ggshield.*.nupkg
You can’t perform that action at this time.
0 commit comments