mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-05 11:06:28 +00:00
10 lines
302 B
YAML
10 lines
302 B
YAML
# Handle git submodules yourself
|
|
git:
|
|
submodules: false
|
|
# Use sed to replace the SSH URL with the public URL, then initialize submodules
|
|
before_install:
|
|
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
|
|
- git submodule update --init --recursive
|
|
language: node_js
|
|
- "6.5.0"
|