diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0376fd28c..fa8e47210 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml | |||
@@ -103,9 +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 | 106 | - name: Create distribution directory |
107 | run: mkdir ./dist | 107 | run: mkdir ./dist |
108 | |||
109 | - name: Copy vscode extension | ||
108 | run: cp ./editors/code/*.vsix ./dist/code/ | 110 | run: cp ./editors/code/*.vsix ./dist/code/ |
111 | |||
112 | - name: Copy emacs mode | ||
109 | run: cp -R ./editors/emacs ./dist/ | 113 | run: cp -R ./editors/emacs ./dist/ |
110 | 114 | ||
111 | - name: Upload artifacts | 115 | - name: Upload artifacts |