Skip to content

Commit

Permalink
Update installer.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fvacek authored Jul 10, 2023
1 parent c03817d commit 01eece3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,19 @@ jobs:
uses: actions/cache@v3
with:
path: |
C:/openssl/bin/libssl-1_1-x64.dll
C:/openssl/bin/libcrypto-1_1-x64.dll
C:/Program Files/PostgreSQL/14/bin/libiconv-2.dll
C:/Program Files/PostgreSQL/14/bin/libintl-9.dll
C:/Program Files/PostgreSQL/14/bin/liblz4.dll
C:/Program Files/PostgreSQL/14/bin/zlib1.dll
C:/Program Files/PostgreSQL/14/bin/libpq.dll
key: ${{ runner.os }}-Libraries

- name: Get PostgreSQL libraries
- name: Get libraries
if: steps.cache-libs.outputs.cache-hit != 'true'
run: |
choco install openssl.light --params "/InstallDir:C:\openssl" --version 1.1.1 -y
choco install postgresql14 --version 14.5.1 -y
shell: cmd

Expand Down Expand Up @@ -61,6 +64,8 @@ jobs:
run: |
cd "C:/Program Files/PostgreSQL/14/bin"
cp libiconv-2.dll libintl-9.dll liblz4.dll zlib1.dll libpq.dll '${{ github.workspace }}/install/bin'
cd "C:\openssl"
cp libssl-1_1-x64.dll libcrypto-1_1-x64.dll '${{ github.workspace }}/install/bin'
shell: bash

- name: Get app version
Expand Down

0 comments on commit 01eece3

Please sign in to comment.