Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci-e2e-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-ios.json
enable-cache: 'false'
- name: Resolve iOS targets
run: |
Expand Down Expand Up @@ -88,6 +89,7 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-android.json
enable-cache: 'false'
- name: Resolve Android targets
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-e2e-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-ios.json
enable-cache: 'false'
- name: Resolve iOS targets
run: |
Expand Down Expand Up @@ -69,6 +70,7 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-android.json
enable-cache: 'false'
- name: Resolve Android targets
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-fast.json
enable-cache: 'false'
- name: build
run: devbox run --config=shells/devbox-fast.json build
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-fast.json
enable-cache: 'false'
- name: build
run: devbox run --config=shells/devbox-fast.json build
Expand Down Expand Up @@ -54,6 +55,7 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-ios.json
enable-cache: 'false'
- name: Resolve iOS targets
run: |
Expand Down Expand Up @@ -101,6 +103,7 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-android.json
enable-cache: 'false'
- name: Resolve Android targets
run: |
Expand Down Expand Up @@ -135,10 +138,11 @@ jobs:
- name: devbox installer
uses: jetify-com/devbox-install-action@v0.14.0
with:
project-path: shells/devbox-fast.json
enable-cache: 'false'

- name: Config, Build, Release
run: devbox run release
run: devbox run --config=shells/devbox-fast.json release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
6 changes: 0 additions & 6 deletions devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,6 @@
"AVD_FLAVOR=latest bash $SCRIPTS_DIR/android/manager.sh start"
],
"start-android": ["bash $SCRIPTS_DIR/android/manager.sh start"],
"release": [
"npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}",
"yarn install --immutable",
"yarn build",
"yarn release"
],
"update-apps": [
"yarn install --no-immutable",
"yarn e2e install --no-immutable",
Expand Down
6 changes: 6 additions & 0 deletions shells/devbox-fast.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
"init_hook": [". $DEVBOX_PROJECT_ROOT/../scripts/shared/common.sh"],
"scripts": {
"build": ["bash $SCRIPTS_DIR/build.sh"],
"release": [
"npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}",
"yarn install --immutable",
"yarn build",
"yarn release"
],
"format": ["treefmt"],
"lint": ["treefmt --fail-on-change"]
}
Expand Down