Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaTP committed Jan 20, 2024
1 parent 998806a commit 48a4bc9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 17 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
cat <(echo -e "${{ secrets.GPG_PRIVATE_KEY }}") | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG
# - name: Compile
# run: mvn clean install -DskipTests=true
- name: Compile
run: mvn clean install -DskipTests=true

# - name: Setup Git
# run: |
Expand All @@ -61,15 +61,12 @@ jobs:
# env:
# GITHUB_TOKEN: ${{secrets.GH_TOKEN}}

- name: Run tmate
uses: mxschmitt/action-tmate@v2

# - name: Release to Maven Central
# run: mvn --batch-mode clean deploy -Prelease -DskipTests=true -X
# env:
# MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
# MAVEN_CENTRAL_TOKEN: ${{ secrets.SONATYPE_PASSWORD }}
# MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
- name: Release to Maven Central
run: mvn --batch-mode clean deploy -Prelease -DskipTests=true -X
env:
MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.SONATYPE_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

# - name: Release
# uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.4</version>
<version>0.0.3</version>
<packaging>pom</packaging>
<name>Chicory</name>
<description>Native JVM WebAssembly runtime</description>
Expand Down
2 changes: 1 addition & 1 deletion runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.4</version>
<version>0.0.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>runtime</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion test-gen-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.4</version>
<version>0.0.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>test-gen-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wasi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.4</version>
<version>0.0.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>wasi</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wasm-support-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.4</version>
<version>0.0.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>wasm-support-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wasm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.4</version>
<version>0.0.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>wasm</artifactId>
Expand Down

0 comments on commit 48a4bc9

Please sign in to comment.