Skip to content

Commit 5be6f5c

Browse files
ci: fix job outputs reference for sconify step
1 parent a80132f commit 5be6f5c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/dapp-deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
build-and-push:
2323
runs-on: ubuntu-latest
2424
outputs:
25-
image-name: ${{ steps.build.outputs.image-name }}
26-
image-tag: ${{ steps.build.outputs.image-tag }}
25+
image-name: ${{ steps.set-outputs.outputs.image-name }}
26+
image-tag: ${{ steps.set-outputs.outputs.image-tag }}
2727
steps:
2828
- name: Checkout code
2929
uses: actions/checkout@v4
@@ -55,6 +55,7 @@ jobs:
5555
cache-to: type=gha,mode=max
5656

5757
- name: Set outputs
58+
id: set-outputs
5859
run: |
5960
echo "image-name=iexechub/web3telegram-dapp" >> $GITHUB_OUTPUT
6061
echo "image-tag=${{ steps.version.outputs.version }}-non-tee" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)