aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorAdam Janovsky2022-04-25 22:56:02 +0200
committerAdam Janovsky2022-04-25 22:56:02 +0200
commit5299ce3fb27a7c20601bf0cb62355fa9fdb5058f (patch)
tree78ff0def435a8a65cb1d51ea62a2cea07212e79e /.github
parent09d65719c133a2c5b378f0ca95e6d4c2cffe60e8 (diff)
downloadsec-certs-5299ce3fb27a7c20601bf0cb62355fa9fdb5058f.tar.gz
sec-certs-5299ce3fb27a7c20601bf0cb62355fa9fdb5058f.tar.zst
sec-certs-5299ce3fb27a7c20601bf0cb62355fa9fdb5058f.zip
fix version check
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/draft_release.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/draft_release.yml b/.github/workflows/draft_release.yml
index 1d18367f..8cc05eba 100644
--- a/.github/workflows/draft_release.yml
+++ b/.github/workflows/draft_release.yml
@@ -17,11 +17,10 @@ jobs:
run: echo "ACTUAL_VERSION=$(cat VERSION)" >> $GITHUB_ENV
- name: Check versions
run: |
- if (!(${{env.PACKAGE_NUMBER}} = ${{github.ref_name}})) ; then
+ if (!(${{env.PACKAGE_NUMBER}} == ${{github.ref_name}})) ; then
echo "Tag does not match version number in VERSION file"
exit 1
fi
-
draft-release:
runs-on: ubuntu-latest
steps: