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 5e580ea commit c83c398Copy full SHA for c83c398
.github/workflows/create-release.yml
@@ -14,11 +14,14 @@ jobs:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v3
17
- - run: |
+ - name: Build Image Tool installer
18
+ run: |
19
+ mvn -version
20
mvn -B clean package
21
- id: version
22
run: echo "::set-output name=number::`echo "${{ github.ref_name }}" | sed 's/release-//'`"
- - env:
23
+ - name: Create draft release and attach installer zip
24
+ env:
25
GH_TOKEN: ${{ github.token }}
26
run: |
27
gh release create ${{ github.ref_name }} \
0 commit comments