Skip to content

Commit

Permalink
ci: release only on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
darksaid98 committed Nov 30, 2023
1 parent 24703d9 commit 4c9deae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
matrix:
java: [ 17 ]
if: github.ref_type == 'tag' && ((github.ref_name == 'main' || github.ref_name == 'master') && github.event_name != 'schedule')
if: github.ref_type == 'tag'
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group = "io.github.ExampleUser"
version = "1.0.3"
version = "1.0.4"
description = ""
val mainPackage = "${project.group}.${rootProject.name}"

Expand Down

0 comments on commit 4c9deae

Please sign in to comment.