We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a812b9f commit 704f94fCopy full SHA for 704f94f
.github/workflows/main.yml
@@ -29,6 +29,13 @@ jobs:
29
- name: Build with Gradle
30
run: ./gradlew clean fatJar
31
32
+ - name: Determine new tag
33
+ id: newtag
34
+ run: echo "::set-output name=tag::$(date +'%Y%m%d%H%M%S')"
35
+
36
+ - name: Create Git Tag
37
+ run: git tag ${{ steps.newtag.outputs.tag }} && git push origin ${{ steps.newtag.outputs.tag }}
38
39
- name: Publish Release
40
uses: softprops/action-gh-release@v1
41
with:
0 commit comments