diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-09 22:00:01 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-09 22:00:01 -0700 |
commit | e8ebff1e6b07dfaafff81ee7013bb019cbfe2075 (patch) | |
tree | 1988f684148adbda79c09cfd692c7d5fca3130bf /.github | |
parent | 286fb0e20e48859f129ccf568d03248805bcbc61 (diff) | |
download | sncontinue-e8ebff1e6b07dfaafff81ee7013bb019cbfe2075.tar.gz sncontinue-e8ebff1e6b07dfaafff81ee7013bb019cbfe2075.tar.bz2 sncontinue-e8ebff1e6b07dfaafff81ee7013bb019cbfe2075.zip |
fix: :bug: add server/exe to .vscodeignore insteading of manually removing
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ef00302e..6111856d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -135,22 +135,7 @@ jobs: npm run test if: matrix.os != 'ubuntu-20.04' - # Package again and build+upload the .vsix - - - name: Remove exe directory (Windows) - run: | - FOR /F "tokens=5" %a IN ('netstat -ano ^| findstr "65432"') DO taskkill /PID %a /F - Remove-Item -Path "extension/server/exe" -Recurse -Force - if: matrix.os == 'windows-latest' - - - name: Remove exe directory (Mac/Linux) - run: rm -rf extension/server/exe - if: matrix.os != 'windows-latest' - - - name: Re-package the extension - run: | - cd extension - npm run package + # Upload .vsix artifact - name: Upload .vsix as an artifact uses: actions/upload-artifact@v2 |