diff options
author | 2020-10-05 07:56:53 +0000 | |
---|---|---|
committer | 2020-10-05 07:56:53 +0000 | |
commit | 2f3dafe711912fbb45c14419cf410250a69f3b1d (patch) | |
tree | 115d01935bf5ff06d4fa0ee5f5162503afed31df | |
parent | 3021048b779cb94dfe2f4422ea412d59d2eeb7a4 (diff) | |
download | rtic-2f3dafe711912fbb45c14419cf410250a69f3b1d.tar.gz rtic-2f3dafe711912fbb45c14419cf410250a69f3b1d.tar.zst rtic-2f3dafe711912fbb45c14419cf410250a69f3b1d.zip |
Ensure pre-releases are not included
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e6271c85..22f13fa2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -595,7 +595,7 @@ jobs: run: | langs=( en ru ) devver=dev - stable=$(git tag | grep v | tail -n 1 | cut -c2-4) + stable=$(git tag | grep v | grep -v "-" | tail -n 1 | cut -c2-4) vers=( 0.5.x 0.4.x ) # Create directories |