You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/main.yml
+30-22Lines changed: 30 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -15,38 +15,41 @@ jobs:
15
15
runs-on: ubuntu-latest
16
16
17
17
steps:
18
-
- uses: actions/checkout@v2
18
+
- name: Clone ember-jsonapi-docs
19
+
uses: actions/checkout@v2
20
+
with:
21
+
path: ember-jsonapi-docs # This puts all the cloned projects side-by-side, which seems to be what the README suggests and seems less confusing to me when reading the remaining steps
19
22
20
-
- name: Clone the project repo
21
-
run: |
22
-
set -euo pipefail
23
-
if [$INPUT_PROJECT -eq 'ember']
24
-
then
25
-
git clone https://github.com/emberjs/ember.js
26
-
cd ember.js
27
-
git checkout "v$INPUT_VERSION"
28
-
elif [$INPUT_PROJECT -eq 'ember-data']
29
-
then
30
-
git clone https://github.com/emberjs/data
31
-
cd data
32
-
git checkout "v$INPUT_VERSION"
33
-
else
34
-
echo "Please specify either ember or ember-data for the project."
0 commit comments