Skip to content

Commit

Permalink
Updated GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiolk committed May 16, 2024
1 parent a8f56ec commit dc6278f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/create_github_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,37 @@ on: push
permissions:
contents: write
jobs:
build:
check_version:
name: Create Github Release
runs-on: ubuntu-latest
outputs:
myOutput: ${{ steps.step1.outputs.myOutput }}
myOutput: ${{ steps.readVersion.outputs.myOutput }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
# - name: Set up JDK 17
# uses: actions/setup-java@v1
# with:
# java-version: 17
- name: Read file and store value in variable
id: readVersion
run: |
MY_VERSION=$(grep '^versionName' gradle.properties | cut -d'=' -f2)
echo "Version name from gradle.properties: $MY_VERSION"
echo "##[set-output name=versionName]$MY_VERSION"
echo "::set-output name=myOutput::$MY_VERSION"
shell: bash
- name: Step 1
id: step1
run: echo "::set-output name=myOutput::1.0.4"
# - name: Step 1
# id: step1
# run: echo "::set-output name=myOutput::1.0.4"
# - uses: ncipollo/release-action@v1
# with:
# tag: ${{ steps.build.outputs.versionName }}
# replacesArtifacts: true
# artifacts: build/libs/detekt-rules.jar

job2:
needs: build
needs: check_version
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -50,11 +52,12 @@ jobs:
run: |
echo "${{secrets.GPG_PRIVATE_KEY}}" > maven-secret-key.asc
- name: Step 2
run: echo "Output from Job 1 ${{ needs.build.outputs.myOutput }}"
run: echo "Output from Job 1 ${{ needs.check_version.outputs.myOutput }}"
- name: Generate jar
run: |
./gradlew jar
echo $versionName
echo ${{ needs.check_version.outputs.myOutput }}"
- uses: ncipollo/release-action@v1
with:
tag: ${{ needs.build.outputs.myOutput }}
Expand Down
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ allprojects {
apply(plugin = "signing")

val dokkaHtml by tasks.existing(DokkaTask::class)

val dokkaJar by tasks.creating(org.gradle.jvm.tasks.Jar::class) {
group = JavaBasePlugin.DOCUMENTATION_GROUP
archiveClassifier.set("javadoc")
Expand Down

0 comments on commit dc6278f

Please sign in to comment.