Skip to content

Commit

Permalink
update java yml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Oct 8, 2024
1 parent 28882b7 commit 926cee0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/java-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:

- name: Create dummy project and initialize Gradle
run: |
mkdir -p src/main/java/org/peerdas/kzg
echo "package org.peerdas.kzg;
mkdir -p src/main/java/org/rust/verkle
echo "package org.rust.verkle;
/**
* DummyClass is a simple class for testing the build and deployment process.
Expand All @@ -43,15 +43,15 @@ jobs:
public static void main(String[] args) {
System.out.println(\"Hello from Verkle trie\");
}
}" > src/main/java/org/peerdas/kzg/DummyClass.java
}" > src/main/java/org/rust/verkle/DummyClass.java
echo "plugins {
id 'java-library'
id 'maven-publish'
id 'org.jreleaser' version '1.12.0'
}
group = 'io.github.kevaundray.dummy'
group = 'io.github.kevaundray.rust-verkle-poc'
version = '0.0.5'
java {
Expand Down Expand Up @@ -82,9 +82,9 @@ jobs:
}
}
scm {
connection = 'scm:git:git://github.com/crate-crypto/verkle-trie.git'
developerConnection = 'scm:git:ssh://github.com:crate-crypto/verkle-trie.git'
url = 'https://github.com/crate-crypto/verkle-trie'
connection = 'scm:git:git://github.com/crate-crypto/rust-verkle.git'
developerConnection = 'scm:git:ssh://github.com:crate-crypto/rust-verkle.git'
url = 'https://github.com/crate-crypto/rust-verkle'
}
}
}
Expand Down

0 comments on commit 926cee0

Please sign in to comment.