Skip to content

Commit 8bbc7a4

Browse files
committed
Fix tarball location
1 parent 8796afb commit 8bbc7a4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/hackage.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,15 @@ jobs:
119119
steps:
120120

121121
- uses: actions/download-artifact@v2
122+
with:
123+
path: packages
124+
125+
- name: "Join all tarballs"
126+
run: find ./packages -type f -name '*.tar.gz' -exec cp {} ./packages \;
122127

123128
- name: "Upload all tarballs to hackage"
124129
uses: haskell-actions/hackage-publish@v1
125130
with:
126131
hackageToken: ${{ secrets.HACKAGE_AUTH_TOKEN }}
132+
packagesPath: packages
127133
publish: false

0 commit comments

Comments
 (0)