We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f70549d commit be150ebCopy full SHA for be150eb
1 file changed
.github/workflows/release.yml
@@ -99,7 +99,10 @@ jobs:
99
uses: actions/upload-artifact@v4
100
with:
101
name: linkstack.zip
102
- path: /tmp/linkstack.zip
+ path: /tmp/linkstack/linkstack.zip
103
+
104
+ - run: pwd
105
+ - run: ls -al
106
107
- name: Create GitHub Release
108
if: ${{ github.event_name == 'push' }}
@@ -153,6 +156,7 @@ jobs:
153
156
curl -X PUT -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -d "$payload" "$url"
154
157
155
158
docker:
159
+ needs: build-and-release
160
runs-on: ubuntu-latest
161
steps:
162
- name: Checkout
@@ -185,6 +189,6 @@ jobs:
185
189
uses: docker/build-push-action@v6
186
190
187
191
context: ./docker
188
- push: true
192
+ push: false
193
tags: ${{ steps.meta.outputs.tags }}
194
labels: ${{ steps.meta.outputs.labels }}
0 commit comments