Skip to content

Commit

Permalink
change tag pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
davecramer committed Apr 18, 2024
1 parent e00478a commit 0f1e52f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches: [ "main" ]
tags:
- 'REL_*'
- 'REL-*'
pull_request:
branches: [ "main" ]

Expand Down Expand Up @@ -227,6 +227,7 @@ jobs:
retention-days: 5
if-no-files-found: error
- name: Upload x64 setup
id: x64_setup
uses: actions/upload-artifact@v4
with:
name: psqlODBC x64 Setup
Expand All @@ -235,12 +236,11 @@ jobs:
if-no-files-found: error

- name: Create Release
if: startsWith(github.ref, 'refs/tags/REL_')
if: startsWith(github.ref, 'refs/tags/REL-')
uses: ncipollo/[email protected]
id: create_release
with:
draft: false
prerelease: false
token: ${{secrets.RELEASE_TOKEN}}
artifacts: "./installer/x86/*.msi,./installer/x86/*.msm,./installer/psqlodbc-setup/bin/Release/psqlodbc-setup.exe"

0 comments on commit 0f1e52f

Please sign in to comment.