We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d927cdc commit 8515099Copy full SHA for 8515099
.github/workflows/release.yml
@@ -9,18 +9,16 @@ jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
+ - name: Install coffeescript-compiler
13
+ run: sudo apt-get install coffeescript
14
+
15
- name: Checkout
16
uses: actions/checkout@v2
17
with:
18
submodules: recursive
19
- - name: Install Node.js and npm
- uses: actions/setup-node@v2
- with:
20
- node-version: '14'
21
-
22
- - name: Install coffeescript
23
- run: npm install -g coffeescript
+ - name: Checkout submodules
+ run: git submodule update --init --recursive
24
25
- name: Get the version
26
id: get_version
0 commit comments