Skip to content

Commit

Permalink
DAT-18458. added install liquibase step to aws-weekly job
Browse files Browse the repository at this point in the history
  • Loading branch information
PavloTytarchuk committed Sep 19, 2024
1 parent c702af1 commit ff6513b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/aws-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install liquibase and lpm
run: |
wget -O- https://repo.liquibase.com/liquibase.asc | gpg --dearmor > liquibase-keyring.gpg && \
cat liquibase-keyring.gpg | sudo tee /usr/share/keyrings/liquibase-keyring.gpg > /dev/null && \
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/liquibase-keyring.gpg] https://repo.liquibase.com stable main' | sudo tee /etc/apt/sources.list.d/liquibase.list
sudo apt-get update
sudo apt-get install liquibase
curl -L -o lpm-${{ env.LPM_VERSION }}-linux.zip https://github.com/liquibase/liquibase-package-manager/releases/download/v${{ env.LPM_VERSION }}/lpm-${{ env.LPM_VERSION }}-linux.zip
sudo unzip -o lpm-${{ env.LPM_VERSION }}-linux.zip -d /usr/bin
sudo lpm update && sudo lpm add mysql postgresql
- name: Configure Test
id: setup
uses: actions/[email protected]
Expand Down

0 comments on commit ff6513b

Please sign in to comment.