Skip to content

Commit

Permalink
Fixing DEV condition
Browse files Browse the repository at this point in the history
  • Loading branch information
c3s4rfred committed Jan 8, 2024
1 parent a9c0fd7 commit 9405cb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Determine Build Environment
id: set-env
run: |
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
echo "DEV environment"
echo "ENV_VERSION=v10-dev" >> $GITHUB_ENV
elif ${{ github.event_name == 'pull_request' && github.base_ref == 'master' }}; then
Expand Down

0 comments on commit 9405cb3

Please sign in to comment.