Skip to content

Commit 9405cb3

Browse files
committed
Fixing DEV condition
1 parent a9c0fd7 commit 9405cb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Determine Build Environment
1717
id: set-env
1818
run: |
19-
if ${{ github.event_name == 'push' && github.ref_name != 'master' }}; then
19+
if ${{ github.event_name == 'push' && github.ref_name != 'master' && !startsWith(github.ref, 'refs/tags/v') }}; then
2020
echo "DEV environment"
2121
echo "ENV_VERSION=v10-dev" >> $GITHUB_ENV
2222
elif ${{ github.event_name == 'pull_request' && github.base_ref == 'master' }}; then

0 commit comments

Comments
 (0)