Skip to content

Commit 9e53357

Browse files
committed
update upload cw client action
1 parent 045d78b commit 9e53357

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/upload-cw-clients.yaml

+9-11
Original file line numberDiff line numberDiff line change
@@ -78,19 +78,17 @@ jobs:
7878
- name: Upload compiled CosmWasm contract
7979
uses: actions/upload-artifact@v4
8080
with:
81-
name: tendermint-cw-${{ github.sha }}
81+
name: tendermint-cw-client
8282
path: artifacts/ibc_client_tendermint_cw.wasm
8383
# Retain the artifact for 1 week for PRs and 3 months for `main` branch
8484
retention-days: ${{ github.event_name == 'pull_request' && 7 || 90 }}
8585
overwrite: true
8686

87-
# # An example workflow to download the artifact:
88-
# download-tendermint-cw-client:
89-
# name: Download pre-compiled Tendermint CosmWasm client
90-
# runs-on: ubuntu-latest
91-
# steps:
92-
# - uses: actions/download-artifact@v4
93-
# with:
94-
# name: tendermint-cw-${{ env.IBC_RS_COMMIT_HASH }}
95-
# repository: cosmos/ibc-rs
96-
# - run: ls -l ibc_client_tendermint_cw.wasm
87+
# # An example workflow to download the artifact:
88+
# - uses: actions/download-artifact@v4
89+
# with:
90+
# name: tendermint-cw-client
91+
# repository: cosmos/ibc-rs
92+
# run-id: ${{ env.UPLOAD_WASM_RUN_ID }}
93+
# github-token: ${{ secrets.GITHUB_TOKEN }}
94+
# - run: ls tendermint-cw-client/ibc_client_tendermint_cw.wasm

0 commit comments

Comments
 (0)