diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-10-09 18:49:32 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-10-09 18:49:32 -0700 |
commit | 4e1a5b1fb3f96edc95b0938265da980e98566d56 (patch) | |
tree | 65d37e82fc9e1fbcfde87cbd077f19c445dc92eb /.github/workflows/preview.yaml | |
parent | 942186c144c97b1d16d5b492d9a3b2c2b735285c (diff) | |
download | sncontinue-4e1a5b1fb3f96edc95b0938265da980e98566d56.tar.gz sncontinue-4e1a5b1fb3f96edc95b0938265da980e98566d56.tar.bz2 sncontinue-4e1a5b1fb3f96edc95b0938265da980e98566d56.zip |
fix: :bug: fix ci to only upload from linux x64, not alpine
Diffstat (limited to '.github/workflows/preview.yaml')
-rw-r--r-- | .github/workflows/preview.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/preview.yaml b/.github/workflows/preview.yaml index 796e65f2..ba885d06 100644 --- a/.github/workflows/preview.yaml +++ b/.github/workflows/preview.yaml @@ -95,7 +95,7 @@ jobs: path: extension/exe/run - uses: actions/upload-artifact@v2 - if: matrix.os == 'ubuntu-20.04' && matrix.arch == 'x64' + if: matrix.os == 'ubuntu-20.04' && matrix.arch == 'x64' && matrix.platform == 'linux' with: name: LinuxBinary path: extension/exe/run |