Skip to content

Commit

Permalink
Merge pull request #235 from White-Whale-Defi-Platform/ci/github-action
Browse files Browse the repository at this point in the history
ci: fix release artifacts ci action
  • Loading branch information
kerber0x authored Dec 19, 2023
2 parents 91f3417 + 021494b commit 1ea6de1
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/release-artifacts-on-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,22 @@ jobs:
submodules: recursive
- name: Build Artifacts
run: |
$GITHUB_WORKSPACE/scripts/build_release.sh
tar -zcvf cosmwasm-artifacts.tar.gz artifacts
$GITHUB_WORKSPACE/scripts/build_release.sh -c migaloo
tar -zcvf cosmwasm-artifacts_cosmwasm-token-factory.tar.gz artifacts
$GITHUB_WORKSPACE/scripts/build_release.sh -c injective
tar -zcvf cosmwasm-artifacts_injective.tar.gz artifacts
$GITHUB_WORKSPACE/scripts/build_release.sh -c terra
tar -zcvf cosmwasm-artifacts_osmosis-token-factory.tar.gz artifacts
$GITHUB_WORKSPACE/scripts/build_release.sh -c chihuahua
tar -zcvf cosmwasm-artifacts_no-token-factory.tar.gz artifacts
- name: Get Artifacts Versions
run: $GITHUB_WORKSPACE/scripts/get_artifacts_versions.sh > artifact_versions.txt
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
cosmwasm-artifacts.tar.gz
cosmwasm-artifacts_cosmwasm-token-factory.tar.gz
cosmwasm-artifacts_osmosis-token-factory.tar.gz
cosmwasm-artifacts_injective.tar.gz
cosmwasm-artifacts_no-token-factory.tar.gz
artifact_versions.txt

0 comments on commit 1ea6de1

Please sign in to comment.