diff --git a/.github/workflows/build_jitpack.yml b/.github/workflows/build_jitpack.yml new file mode 100644 index 0000000..b12e961 --- /dev/null +++ b/.github/workflows/build_jitpack.yml @@ -0,0 +1,19 @@ +name: Trigger JitPack Build + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + trigger-jitpack-build: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Trigger JitPack Build + run: | + curl -L "https://jitpack.io/api/builds/$GITHUB_REPOSITORY/${GITHUB_SHA:0:10}" \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index ed6367a..90417f2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,7 +9,7 @@ plugins { id("org.jetbrains.dokka") version "1.9.20" } -val meepMeepVersion = "1.0-SNAPSHOT" +val meepMeepVersion = "1.0.0" val pomUrl = "https://github.com/rh-robotics/MeepMeep" val pomScmUrl = "https://github.com/rh-robotics/MeepMeep" val pomIssueUrl = "https://github.com/rh-robotics/MeepMeep/issues"