Skip to content
This repository was archived by the owner on Sep 12, 2025. It is now read-only.

Commit a312254

Browse files
committed
0.0.5
1 parent 5109fa5 commit a312254

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/on-tag-publish.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ on:
77
workflow_dispatch: {}
88

99
jobs:
10-
build-blink:
10+
publish-blink:
1111
runs-on: ubuntu-latest
12+
13+
permissions:
14+
contents: write
15+
1216
env:
1317
QUARKUS_PROFILE: prod
1418

1519
steps:
16-
1720
- name: Set up JDK 17 for x64
1821
uses: actions/setup-java@v3
1922
with:
@@ -30,8 +33,11 @@ jobs:
3033
run: mvn --no-transfer-progress -B -DskipTests package
3134
continue-on-error: true
3235

36+
# git tag v0.0.1 && git push origin --tags
3337
- name: Release
3438
uses: softprops/action-gh-release@v1
39+
if: startsWith(github.ref, 'refs/tags/')
40+
3541
with:
3642
files: blink-core/target/blink-core.jar
3743

0 commit comments

Comments
 (0)