Skip to content

Commit 2f6b1d8

Browse files
committed
add missing working directory
1 parent 772d77d commit 2f6b1d8

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/distribute.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +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+
runs-on: ubuntu-latest
31+
defaults:
32+
run:
33+
working-directory: ./hackertab
34+
3035
install-dependencies:
3136
needs: tag_version
32-
runs-on: ubuntu-latest
3337
steps:
3438
- uses: actions/checkout@v2
3539
with:
@@ -42,7 +46,6 @@ jobs:
4246
run: yarn
4347

4448
tag_version:
45-
runs-on: ubuntu-latest
4649
steps:
4750
- uses: actions/checkout@v2
4851
- name: Bump version and push tag
@@ -68,7 +71,6 @@ jobs:
6871
chrome-deploy:
6972
if: ${{ (github.event.inputs.targetStore == 'chrome') || (github.event.inputs.targetStore == 'all') }}
7073
needs: install-dependencies
71-
runs-on: ubuntu-latest
7274
steps:
7375
- name: Build and zip the extension
7476
run: yarn build-chrome
@@ -86,7 +88,6 @@ jobs:
8688
firefox-deploy:
8789
if: ${{ (github.event.inputs.targetStore == 'firefox') || (github.event.inputs.targetStore == 'all') }}
8890
needs: install-dependencies
89-
runs-on: ubuntu-latest
9091
steps:
9192
- name: Build and zip the extension
9293
run: yarn build-firefox

0 commit comments

Comments
 (0)