-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: handleMessage parameter-from to fromNid (#28) * fix: handleMessage parameter-from to fromNid * fix: issues fixed occured during fixes * fix: parameter changed in rust side and docs * style: cargo lints fixes * chore: underscore added in parameter docs --------- Co-authored-by: AntonAndell <[email protected]> * fix: fee check send message (#84) * fix: add fee check * chore: pass build * fix: add test for fail case * fix: reverse fee logic * fix: add zero check * ci: publish xcall-multi library to maven repository (#71) * ci: publish xcall-multi library to maven repository * add publish_maven.yml * Update build.gradle * fix maven publish 400 error, this due to initializeSonatypeStagingRepository task failed * add workaround solution - comment maven publish block and only uncomment during publish task This is due to icon java plugin is only compatible with older plugin import syntax while nexus-publish plugin only works in new plugin import syntax * add sonatype group properties variable - GROUP * bump version - xcall-lib to 0.1.2 * docs: add maven badge and gradle implementation in README * fix: remove unnecessary comments (#72) * fix: remove unnecessary comment * chore: pass build --------- Co-authored-by: sabinchitrakar <[email protected]> * chore: find and replace xCall -> xcall-multi in md files (#52) * ci: enable release in an action (#103) --------- Co-authored-by: gcranju <[email protected]> Co-authored-by: AntonAndell <[email protected]> Co-authored-by: ibrizsabin <[email protected]> Co-authored-by: DeepakBomjan <[email protected]> Co-authored-by: sabinchitrakar <[email protected]>
- Loading branch information
1 parent
7958fda
commit caaf7a0
Showing
21 changed files
with
264 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Publish package to the Maven Central Repository | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build jar | ||
working-directory: contracts/javascore | ||
run: ./gradlew clean build | ||
- name: Publish package | ||
working-directory: contracts/javascore | ||
run: | | ||
# Temporary workaround - uncomment maven publish block | ||
sed -i 's/^\/\/ //' build.gradle | ||
./gradlew xcall-lib:publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
env: | ||
STAGING_PROFILE_ID : ${{ secrets.STAGING_PROFILE_ID }} | ||
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
ORG_GRADLE_PROJECT_signingKey : ${{ secrets.SIGNING_KEY }} | ||
ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.SIGNING_PASSWORD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.