Skip to content

Commit

Permalink
Test why tag actions is skipped, dryRun = true for real
Browse files Browse the repository at this point in the history
  • Loading branch information
sumedhsakdeo committed Feb 21, 2024
1 parent 70733f2 commit c6a3818
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/tag-openhouse.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
name: Bump version and push tag
on:
pull_request:
types:
- closed
branches:
- main
workflow_run:
workflows: ["Gradle Build OpenHouse"]
types:
Expand All @@ -30,5 +25,5 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true # prefix for tag "v"
DEFAULT_BUMP: patch # major, minor, patch
DRY_RUN: false # if true, will not push tag
DRY_RUN: true # if true, will not push tag
INITIAL_VERSION: 0.5.0 # if no tags, will use this version
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ ext {
spark_version = "3.1.1"
}

group = 'com.linkedin.openhouse'

subprojects {
buildDir = "${rootProject.buildDir}/${project.name}"
group = rootProject.group
version = rootProject.version
}

allprojects {
Expand Down

0 comments on commit c6a3818

Please sign in to comment.