Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into sozo_enhancement/cont…
Browse files Browse the repository at this point in the history
…ract_stats_#1081
  • Loading branch information
fabrobles92 committed Apr 15, 2024
2 parents e1472d4 + 89a5b9e commit 856c5d1
Show file tree
Hide file tree
Showing 134 changed files with 4,786 additions and 847 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cargo llvm-cov nextest --no-report -p katana
cargo llvm-cov nextest --no-report -p katana --no-default-features --features sir
cargo llvm-cov report --lcov --output-path lcov.info
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
# Workaround described here: https://github.com/actions/checkout/issues/760
- uses: actions/checkout@v3
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- run: cargo release version ${{ inputs.version }} --execute --no-confirm && cargo release replace --execute --no-confirm
- run: |
version=${{ inputs.version }}
version=${version#v}
cargo release version ${{ inputs.version }} --execute --no-confirm && cargo release replace --execute --no-confirm
- id: version_info
run: |
cargo install cargo-get
Expand Down
Loading

0 comments on commit 856c5d1

Please sign in to comment.