Skip to content

Commit 6e77914

Browse files
committed
chore: fake commit
1 parent 4f6ff27 commit 6e77914

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
TEST_GG_VALID_TOKEN_IGNORE_SHA: ${{ secrets.TEST_GG_VALID_TOKEN_IGNORE_SHA }}
142142
TEST_UNKNOWN_SECRET: ${{ secrets.TEST_UNKNOWN_SECRET }}
143143

144-
build_os_packages:
144+
build_release_assets:
145145
uses: ./.github/workflows/build_release_assets.yml
146146
secrets: inherit
147147

@@ -202,3 +202,25 @@ jobs:
202202
registry: docker.pkg.github.com
203203
repository: gitguardian/ggshield/ggshield
204204
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

0 commit comments

Comments
 (0)