Skip to content

Commit a0d4201

Browse files
committed
fix runs on call
1 parent 2f6b1d8 commit a0d4201

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/distribute.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ 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
3130
defaults:
3231
run:
3332
working-directory: ./hackertab
3433

3534
install-dependencies:
35+
runs-on: ubuntu-latest
3636
needs: tag_version
3737
steps:
3838
- uses: actions/checkout@v2
@@ -46,6 +46,7 @@ jobs:
4646
run: yarn
4747

4848
tag_version:
49+
runs-on: ubuntu-latest
4950
steps:
5051
- uses: actions/checkout@v2
5152
- name: Bump version and push tag
@@ -69,6 +70,7 @@ jobs:
6970
message: "Bump manifest version"
7071

7172
chrome-deploy:
73+
runs-on: ubuntu-latest
7274
if: ${{ (github.event.inputs.targetStore == 'chrome') || (github.event.inputs.targetStore == 'all') }}
7375
needs: install-dependencies
7476
steps:
@@ -86,6 +88,7 @@ jobs:
8688
run: chrome-webstore-upload upload --source dist/chrome_extension.zip --extension-id $EXTENSION_ID --auto-publish
8789

8890
firefox-deploy:
91+
runs-on: ubuntu-latest
8992
if: ${{ (github.event.inputs.targetStore == 'firefox') || (github.event.inputs.targetStore == 'all') }}
9093
needs: install-dependencies
9194
steps:

0 commit comments

Comments
 (0)