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 | |
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
-rw-r--r-- | .github/workflows/main.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/preview.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 94944615..69be5cd7 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -96,7 +96,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 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 |