Skip to content

Commit

Permalink
yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah committed Jan 23, 2024
1 parent de08ccf commit e69ffcb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
tag:
description: 'Tag'
required: true
default: 'refs/tags/v0.0.0'
upload_to_maven:
description: 'Upload to Maven'
required: false
Expand All @@ -27,7 +31,9 @@ jobs:
java: [ '8' ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.tag || github.ref }}
- name: Setup java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -57,7 +63,7 @@ jobs:
cp data/.flattened-pom.xml staging/kusto-data-$version.pom
cp ingest/.flattened-pom.xml staging/kusto-ingest-$version.pom
- name: Github Release
uses: anton-yurchenko/git-release@v5.0.1
uses: anton-yurchenko/git-release@v6.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit e69ffcb

Please sign in to comment.