diff options
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r-- | .github/workflows/ci.yaml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7b46671c9..0376fd28c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml | |||
@@ -103,8 +103,13 @@ jobs: | |||
103 | - run: npm run package --scripts-prepend-node-path | 103 | - run: npm run package --scripts-prepend-node-path |
104 | working-directory: ./editors/code | 104 | working-directory: ./editors/code |
105 | 105 | ||
106 | - name: Remove files not to be published | ||
107 | run: mkdir ./dist | ||
108 | run: cp ./editors/code/*.vsix ./dist/code/ | ||
109 | run: cp -R ./editors/emacs ./dist/ | ||
110 | |||
106 | - name: Upload artifacts | 111 | - name: Upload artifacts |
107 | uses: actions/upload-artifact@v1 | 112 | uses: actions/upload-artifact@v1 |
108 | with: | 113 | with: |
109 | name: editors | 114 | name: executables |
110 | path: ./editors | 115 | path: ./dist |