summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-04-26 23:07:21 +0100
committerBrooks J Rady <b.j.rady@gmail.com>2021-04-26 23:07:21 +0100
commit4f8ee01067f37ab36b288889834885c6651bdf6b (patch)
tree0683e0039c981389f7aa374149d624272f099b9d /.github
parentb460fc36ea2ca808888bc27f8c206de5038ff469 (diff)
fix(ci): fix environment variable (again)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index cfd3c9926..405163048 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -34,9 +34,9 @@ jobs:
- name: Set release tag
run: |
if [ "$GITHUB_EVENT_NAME" == 'workflow_dispatch' ]; then
- echo "RELEASE_TAG=main"
+ echo "RELEASE_TAG=main" >> $GITHUB_ENV
else
- echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}"
+ echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
fi
- name: Checkout repository