aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e3bb3bf..edcc2df 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -36,7 +36,15 @@ jobs:
- name: Build
run: pnpm build --standalone
+ - name: Get some values needed for the release
+ id: release_values
+ run: |
+ echo "release_tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
+
- name: Upload Devbuild
- run: gh release upload devbuild --clobber dist/*
+ run: |
+ gh release upload devbuild --clobber dist/*
+ gh release edit devbuild --title "DevBuild $RELEASE_TAG"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ RELEASE_TAG: ${{ env.release_tag }}