Skip to content

Commit

Permalink
Flatten extension artifact zip from gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
smithgp committed Nov 21, 2023
1 parent b884a9a commit 6a5b76e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,17 @@ jobs:
run: |
sudo /usr/bin/Xvfb :10 -ac -screen 0 1024x768x24 -audit 4 2>&1 &
DISPLAY=:10 npm run test:vsix-integration
- name: Package extensions
# upload-artifact maintains folder structure on globs, but I want the zip to just have the .vsix's
# at the root to make it easier to use
run: |
mkdir dist-extensions
find . -name '*.vsix' -type f -exec mv {} dist-extensions \;
- name: Upload extensions
uses: actions/upload-artifact@v3
with:
name: extensions
path: extensions/*/*.vsix
path: dist-extensions

build-insiders:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6a5b76e

Please sign in to comment.