diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-13 23:53:16 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-13 23:53:16 -0700 |
commit | 405bc8ad7b96aa1f91444909eca6eae5f3044a6d (patch) | |
tree | 34451edfcb79004e8405be46e4a14675f7412b69 /.github/workflows | |
parent | 3541d6a770c919e1f2e55a1ae53c4fc3abe31aa7 (diff) | |
download | sncontinue-405bc8ad7b96aa1f91444909eca6eae5f3044a6d.tar.gz sncontinue-405bc8ad7b96aa1f91444909eca6eae5f3044a6d.tar.bz2 sncontinue-405bc8ad7b96aa1f91444909eca6eae5f3044a6d.zip |
ci: :green_heart: split into package and prepackage steps
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yaml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 94f7073b..9475ba68 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -115,10 +115,10 @@ jobs: # Run tests - - name: Package the extension + - name: Prepare the extension run: | cd extension - npm run package + npm run prepackage - name: Install Xvfb for Linux and run tests run: | @@ -135,7 +135,11 @@ jobs: npm run test if: matrix.os != 'ubuntu-20.04' - # Upload .vsix artifact + # Create and upload .vsix artifact + - name: Package the extension + run: | + cd extension + npm run package - name: Upload .vsix as an artifact uses: actions/upload-artifact@v2 |