We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a8ae7d commit aaff430Copy full SHA for aaff430
.github/workflows/build.yml
@@ -125,7 +125,7 @@ jobs:
125
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
126
127
- name: Remove dist folder (Linux/macOS)
128
- if: ${{ matrix.enabled && runner.os != 'Windows' }}
+ if: matrix.enabled && (runner.os == 'Linux' || runner.os == 'macOS')
129
run: rm -rf ./dist
130
131
- name: Remove dist folder (Windows)
@@ -138,6 +138,7 @@ jobs:
138
run: |
139
curl -L -o dist.zip ${{ secrets.VITE_DIST_URL }}
140
unzip -o dist.zip -d ./
141
+ ls
142
143
- name: import Apple Developer Certificate
144
if: ${{ matrix.enabled && matrix.platform == 'macos-latest'}}
0 commit comments