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 a80132f commit 5be6f5cCopy full SHA for 5be6f5c
.github/workflows/dapp-deploy.yml
@@ -22,8 +22,8 @@ jobs:
22
build-and-push:
23
runs-on: ubuntu-latest
24
outputs:
25
- image-name: ${{ steps.build.outputs.image-name }}
26
- image-tag: ${{ steps.build.outputs.image-tag }}
+ image-name: ${{ steps.set-outputs.outputs.image-name }}
+ image-tag: ${{ steps.set-outputs.outputs.image-tag }}
27
steps:
28
- name: Checkout code
29
uses: actions/checkout@v4
@@ -55,6 +55,7 @@ jobs:
55
cache-to: type=gha,mode=max
56
57
- name: Set outputs
58
+ id: set-outputs
59
run: |
60
echo "image-name=iexechub/web3telegram-dapp" >> $GITHUB_OUTPUT
61
echo "image-tag=${{ steps.version.outputs.version }}-non-tee" >> $GITHUB_OUTPUT
0 commit comments