From 0a18d86fe6e671031469cc19e63efe82e524e7d9 Mon Sep 17 00:00:00 2001 From: Prateek Machiraju Date: Fri, 10 Jul 2020 15:26:45 -0400 Subject: [PATCH] Automatically push latest commit to Dev tag (#23) --- .github/workflows/main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c6ac26f94..2a8a01e8e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -168,6 +168,14 @@ jobs: with: name: jar path: photon-server/build/libs + + - uses: eine/tip@master + with: + token: ${{ secrets.GITHUB_TOKEN }} + tag: 'Dev' + files: | + photon-server/build/libs/*.jar + if: github.event_name == 'push' check-lint: # Let all steps run within the photon-server dir. @@ -191,3 +199,4 @@ jobs: - run: | chmod +x gradlew ./gradlew spotlessCheck +