Skip to content

Commit c976c71

Browse files
committed
fix defaults call
1 parent a0d4201 commit c976c71

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/distribute.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ env:
2727
REACT_APP_AMPLITUDE_URL: ${{ secrets.REACT_APP_AMPLITUDE_URL }}
2828
REACT_APP_AMPLITUDE_KEY: ${{ secrets.REACT_APP_AMPLITUDE_KEY }}
2929
jobs:
30-
defaults:
31-
run:
32-
working-directory: ./hackertab
3330

3431
install-dependencies:
3532
runs-on: ubuntu-latest
3633
needs: tag_version
34+
defaults:
35+
run:
36+
working-directory: ./hackertab
3737
steps:
3838
- uses: actions/checkout@v2
3939
with:
@@ -47,6 +47,9 @@ jobs:
4747

4848
tag_version:
4949
runs-on: ubuntu-latest
50+
defaults:
51+
run:
52+
working-directory: ./hackertab
5053
steps:
5154
- uses: actions/checkout@v2
5255
- name: Bump version and push tag
@@ -71,6 +74,9 @@ jobs:
7174

7275
chrome-deploy:
7376
runs-on: ubuntu-latest
77+
defaults:
78+
run:
79+
working-directory: ./hackertab
7480
if: ${{ (github.event.inputs.targetStore == 'chrome') || (github.event.inputs.targetStore == 'all') }}
7581
needs: install-dependencies
7682
steps:
@@ -89,6 +95,9 @@ jobs:
8995

9096
firefox-deploy:
9197
runs-on: ubuntu-latest
98+
defaults:
99+
run:
100+
working-directory: ./hackertab
92101
if: ${{ (github.event.inputs.targetStore == 'firefox') || (github.event.inputs.targetStore == 'all') }}
93102
needs: install-dependencies
94103
steps:

0 commit comments

Comments
 (0)