We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a40ecbd commit 2ac699aCopy full SHA for 2ac699a
1 file changed
.github/workflows/build-release.yml
@@ -7,9 +7,9 @@ jobs:
7
build:
8
strategy:
9
matrix:
10
- platform: [ubuntu-latest, macos-latest]
+ os: ['ubuntu-latest', 'macos-latest']
11
linux-platforms: ['linux', 'alpine']
12
- runs-on: ${{ matrix.platform }}
+ runs-on: ${{ matrix.os }}
13
steps:
14
- uses: actions/checkout@master
15
@@ -28,7 +28,7 @@ jobs:
28
PACKAGE: 'true'
29
30
- name: Build code-server binary (macOS)
31
- if: contains( ${{ matrix.platform }} , 'macos-latest')
+ if: contains( ${{ strategy.matrix.os }} , 'macos-latest')
32
run: bash ./scripts/ci.bash
33
env:
34
MAJOR_VERSION: '2'
0 commit comments