Skip to content

Commit 7e2e381

Browse files
committed
[skip ci] Fix workflow
1 parent 2efc7bc commit 7e2e381

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/publish-chocolatey.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ jobs:
3434
uses: actions/download-artifact@v4
3535
with:
3636
name: scala.nupkg
37+
- name: List files recursively
38+
shell: bash
39+
run: ls -R scala.nupkg
3740
- name: Publish the package to Chocolatey
3841
run:
39-
ls -R scala.nupkg
4042
choco push scala.nupkg/scala.${{inputs.version}}.nupkg --source https://push.chocolatey.org/ --api-key ${{ secrets.API-KEY }}
4143

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
java-version: 8
6464
publish-chocolatey:
6565
uses: ./.github/workflows/publish-chocolatey.yml
66-
needs: [ build-chocolatey, test-chocolatey ]
66+
needs: [ build-chocolatey]
6767
with:
6868
version: ${{ inputs.version }}
6969
secrets:

0 commit comments

Comments
 (0)