Skip to content

Commit

Permalink
add upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
davecramer committed Apr 16, 2024
1 parent c250436 commit af35a23
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ run-name: psql ODBC CI - ${{ github.event.head_commit.message }}
on:
push:
branches: [ "main" ]
tags:
- 'REL_*'
pull_request:
branches: [ "main" ]

Expand Down Expand Up @@ -196,26 +198,26 @@ jobs:
shell: powershell
run: |
winbuild\regress.ps1 -DsnInfo "SERVER=localhost|DATABASE=contrib_regression|PORT=5432|UID=postgres|PWD=password"
# - name: Upload x64 installer
# uses: actions/upload-artifact@v4
# with:
# name: psqlODBC x64 Installer
# path: ./installer/x64/*.msi
# retention-days: 5
# if-no-files-found: error
# - name: Upload x86 installer
# uses: actions/upload-artifact@v4
# with:
# name: psqlODBC x86 Installer
# path: ./installer/x86/*.msi
# retention-days: 5
# if-no-files-found: error
# - name: Upload x64 setup
# uses: actions/upload-artifact@v4
# with:
# name: psqlODBC x64 Setup
# path: ./installer/psqlodbc-setup/bin/Release/psqlodbc-setup.exe
# retention-days: 5
# if-no-files-found: error
- name: Upload x64 installer
uses: actions/upload-artifact@v4
with:
name: psqlODBC x64 Installer
path: ./installer/x64/*.msi
retention-days: 5
if-no-files-found: error
- name: Upload x86 installer
uses: actions/upload-artifact@v4
with:
name: psqlODBC x86 Installer
path: ./installer/x86/*.msi
retention-days: 5
if-no-files-found: error
- name: Upload x64 setup
uses: actions/upload-artifact@v4
with:
name: psqlODBC x64 Setup
path: ./installer/psqlodbc-setup/bin/Release/psqlodbc-setup.exe
retention-days: 5
if-no-files-found: error


0 comments on commit af35a23

Please sign in to comment.