We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ac699a commit 1da144eCopy full SHA for 1da144e
1 file changed
.github/workflows/build-commit.yml
@@ -21,6 +21,7 @@ jobs:
21
- name: Build code-server binary (Linux)
22
run: bash ./scripts/ci.bash
23
env:
24
+ PLATFORM: ${{ matrix.platform }}
25
MAJOR_VERSION: '2'
26
TARGET: ${{ matrix.linux-platforms }}
27
VERSION: '${MAJOR_VERSION}.${GITHUB_SHA}'
@@ -29,11 +30,17 @@ jobs:
29
30
PACKAGE: 'true'
31
32
- name: Build code-server binary (macOS)
- if: contains(${{ matrix.platform }}, 'macos-latest')
33
+ if: contains(${PLATFORM}, 'macos-latest')
34
35
36
37
38
39
VSCODE_VERSION: '1.38.1'
40
MINIFY: 'true'
- PACKAGE: 'true'
41
+ PACKAGE: 'true'
42
+
43
+ - uses: actions/upload-artifact@master
44
+ with:
45
+ name: nightly-builds
46
+ path: build/
0 commit comments