Skip to content

Commit

Permalink
fix: v2 build flag
Browse files Browse the repository at this point in the history
  • Loading branch information
auricom committed Jan 24, 2025
1 parent 5f5ce7a commit 8c0d1c8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-applications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -458,15 +458,15 @@ jobs:
# Get job conclusion with error handling
PREVIOUS_STATUS=$(curl -s -H "Authorization: token ${{ github.token }}" \
"https://api.github.com/repos/${REPO}/actions/runs/${PREVIOUS_RUN_ID}/jobs" \
| jq -r --arg JOB_NAME "$JOB_NAME" '.jobs[] | select(.name == $JOB_NAME).conclusion // "unknown"')
| jq -r --arg JOB_NAME "$JOB_NAME" '.jobs[] | select(.name == $JOB_NAME) | .conclusion')
echo "previous_status=${PREVIOUS_STATUS}" >> $GITHUB_OUTPUT
- name: Notify Slack
if: |
inputs.sendNotifications == true &&
(
(env.app_status != 'true' && steps.previous-run.outputs.previous_status == 'failure') ||
(env.app_status == 'false' && steps.previous-run.outputs.previous_status == 'success')
(env.app_status == 'true' && steps.previous-run.outputs.previous_status == 'failure') ||
(env.app_status != 'true' && steps.previous-run.outputs.previous_status == 'success')
)
uses: rtCamp/action-slack-notify@c33737706dea87cd7784c687dadc9adf1be59990 # v2.3.2
env:
Expand Down
2 changes: 1 addition & 1 deletion apps/cosmos-sdk-v2/ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ go mod tidy

# Build application
cd ..
COSMOS_BUILD_OPTIONS=v2 make install
make install
2 changes: 1 addition & 1 deletion apps/cosmos-sdk-v2/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ app: cosmos-sdk-v2
repository: cosmos/cosmos-sdk
path: simapp
publish_artifacts: true
binary_name: simdv2
binary_name: simd
channels:
- name: v0.52.x
branch: refs/heads/release/v0.52.x
Expand Down

0 comments on commit 8c0d1c8

Please sign in to comment.