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 5665d3b commit 4794d16Copy full SHA for 4794d16
1 file changed
.github/workflows/main.yml
@@ -15,7 +15,8 @@ jobs:
15
- run: npm install
16
- name: Echo week folder and run tests
17
run: |
18
- echo ${{github.base_ref}}
19
- export WEEK=$(echo ${BRANCH_NAME} | sed -E 's/.*w(eek)?[-_]?([0-9]).*/week\2/gi')
+ echo ${{github.repository}}
+ echo ${{github.ref}}
20
+ export WEEK=$(echo ${{github.ref}} | sed -E 's/.*w(eek)?[-_]?([0-9]).*/week\2/gi')
21
echo Week: ${WEEK}
22
npm run test-${WEEK}
0 commit comments