Skip to content
This repository was archived by the owner on Aug 4, 2024. It is now read-only.

Commit 3cded56

Browse files
committed
Change version to 0.0.1
1 parent c8e0795 commit 3cded56

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
os: [ ubuntu-latest ]
2727
java-version: [ 11 ]
28-
runs-on: [self-hosted]
28+
runs-on: ubuntu-latest
2929
timeout-minutes: 35
3030
steps:
3131
- name: Checkout
@@ -77,7 +77,7 @@ jobs:
7777
name: Publish tests results
7878
if: inputs.is-a-release == false
7979
needs: test
80-
runs-on: [self-hosted]
80+
runs-on: ubuntu-latest
8181
permissions:
8282
contents: read
8383
issues: read
@@ -99,7 +99,7 @@ jobs:
9999
name: Publish release results
100100
if: inputs.is-a-release == true
101101
needs: build-and-release
102-
runs-on: [self-hosted]
102+
runs-on: ubuntu-latest
103103
permissions:
104104
contents: read
105105
issues: read
@@ -123,7 +123,7 @@ jobs:
123123
if: inputs.is-a-release && github.repository == 'native4j/capstone-java' && github.ref == 'refs/heads/master'
124124
strategy:
125125
fail-fast: true
126-
runs-on: [self-hosted]
126+
runs-on: ubuntu-latest
127127
timeout-minutes: 35
128128
steps:
129129
- name: Checkout
@@ -204,8 +204,8 @@ jobs:
204204
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.JRELEASER_GPG_PUBLIC_KEY }}
205205
JRELEASER_GPG_SECRET_KEY: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}
206206
JRELEASER_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}
207-
JRELEASER_NEXUS2_MAVEN_USERNAME: ${{ secrets.JRELEASER_DEPLOY_MAVEN_NEXUS2_USERNAME }}
208-
JRELEASER_NEXUS2_MAVEN_PASSWORD: ${{ secrets.JRELEASER_DEPLOY_MAVEN_NEXUS2_PASSWORD }}
207+
JRELEASER_NEXUS2_USERNAME: ${{ secrets.JRELEASER_DEPLOY_MAVEN_NEXUS2_USERNAME }}
208+
JRELEASER_NEXUS2_PASSWORD: ${{ secrets.JRELEASER_DEPLOY_MAVEN_NEXUS2_PASSWORD }}
209209
# Upload JRelease debug log
210210
- name: JReleaser output
211211
uses: actions/upload-artifact@v3

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
allprojects {
22
group = "org.native4j"
3-
version = "0.0.2-SNAPSHOT"
3+
version = "0.0.1"
44
}
55

66
subprojects {

jreleaser.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ deploy:
4848
nexus2:
4949
maven-central:
5050
active: RELEASE
51+
authorization: BASIC
5152
sign: true
5253
url: https://s01.oss.sonatype.org/service/local
5354
snapshotUrl: https://s01.oss.sonatype.org/content/repositories/snapshots/

0 commit comments

Comments
 (0)