Skip to content

Commit

Permalink
Try new build workflow, with environment for new job set up
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Feb 25, 2024
1 parent 6e22da3 commit 5524a50
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/uberjar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,5 +189,20 @@ jobs:
- build_msi

steps:
- uses: actions/checkout@v4

- uses: Deep-Symmetry/github-version-action@v1
with:
tag-var-name: release_tag

- name: Determine snapshot status
run: |
if [[ $release_tag =~ .*-SNAPSHOT ]]
then
echo "release_snapshot=true" >>$GITHUB_ENV
else
echo "release_snapshot=false" >>$GITHUB_ENV
fi
- name: Update release title, description, and status
run: bash .github/scripts/finish_release.sh

0 comments on commit 5524a50

Please sign in to comment.