We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d41089 commit 014cb77Copy full SHA for 014cb77
.github/workflows/docker-image.yml
@@ -159,10 +159,15 @@ jobs:
159
cache-to: type=registry,ref=${{ secrets.DOCKER_HUB_USERNAME }}/hastructure:buildcache,mode=max
160
161
publish:
162
+
163
+ needs: [build]
164
- - uses: haskell-actions/hackage-publish@v1
- with:
165
- hackageToken: ${{ secrets.HACKAGE_KEY }}
166
- packagesPath: ${{ runner.temp }}/packages
167
- docsPath: ${{ runner.temp }}/docs
168
- publish: false
+ runs-on: ubuntu-latest
+ steps:
+ - uses: haskell-actions/hackage-publish@v1
169
+ with:
170
+ hackageToken: ${{ secrets.HACKAGE_KEY }}
171
+ packagesPath: ${{ runner.temp }}/packages
172
+ docsPath: ${{ runner.temp }}/docs
173
+ publish: false
0 commit comments