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 e496b13 commit 9df133dCopy full SHA for 9df133d
.github/workflows/build.yml
@@ -37,6 +37,13 @@ jobs:
37
id: vars
38
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
39
40
+ - name: Create and push tag
41
+ run: |
42
+ git config user.name "${{ github.actor }}"
43
+ git config user.email "${{ github.actor }}@users.noreply.github.com"
44
+ git tag release-${{ steps.vars.outputs.sha_short }}
45
+ git push origin release-${{ steps.vars.outputs.sha_short }}
46
+
47
- name: Create GitHub Release
48
uses: softprops/action-gh-release@v1
49
with:
.gitignore
@@ -16,4 +16,5 @@ buildNumber.properties
16
# JDT-specific (Eclipse Java Development Tools)
17
.classpath
18
.idea/
19
-scripts/*.jar
+scripts/*.jar
20
+*.iml
0 commit comments