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 2c5d514 commit 142cc43Copy full SHA for 142cc43
.github/workflows/release.yml
@@ -1,7 +1,10 @@
1
name: Create a release from a tag
2
3
-# todo: change to trigger on tag
4
on:
+ push:
5
+ tags:
6
+ - "v*.*.*"
7
+ - "v*.*"
8
workflow_dispatch:
9
10
jobs:
@@ -18,13 +21,10 @@ jobs:
18
21
- name: Build with Maven
19
22
#we are skipping tests as tests are executed when creating a tag
20
23
run: mvn -B package --file pom.xml -DskipTests
- - name: Create Release
- run: echo ${{ github.sha }} > Release.txt
- - name: Test
24
- run: cat Release.txt
25
- name: Release
26
uses: softprops/action-gh-release@v1
27
with:
28
files: |
29
Release.txt
30
- connector/target/kafka-questdb-connector-*-bin.zip
+ connector/target/kafka-questdb-connector-*-bin.zip
+ draft: true
0 commit comments