Skip to content

Commit

Permalink
Update chromatic.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr authored Jan 17, 2025
1 parent fd5c0b9 commit bacc1e6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,23 @@ on:

jobs:
publish:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install openssl 1.1
run: |
wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz
tar -zxvf openssl-1.1.1o.tar.gz
cd openssl-1.1.1o
./config
make
sudo make install
sudo find / -name libssl.so.1.1
sudo ln -s /usr/local/lib/libssl.so.1.1 /usr/lib/libssl.so.1.1
sudo find / -name libcrypto.so.1.1
sudo ln -s /usr/local/lib/libcrypto.so.1.1 /usr/lib/libcrypto.so.1.1
- name: Publish Storybook to Chromatic
uses: fluentci-io/setup-fluentci@v5
with:
Expand Down

0 comments on commit bacc1e6

Please sign in to comment.