We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9c0fd7 commit 9405cb3Copy full SHA for 9405cb3
.github/workflows/main.yml
@@ -16,7 +16,7 @@ jobs:
16
- name: Determine Build Environment
17
id: set-env
18
run: |
19
- if ${{ github.event_name == 'push' && github.ref_name != 'master' }}; then
+ if ${{ github.event_name == 'push' && github.ref_name != 'master' && !startsWith(github.ref, 'refs/tags/v') }}; then
20
echo "DEV environment"
21
echo "ENV_VERSION=v10-dev" >> $GITHUB_ENV
22
elif ${{ github.event_name == 'pull_request' && github.base_ref == 'master' }}; then
0 commit comments