Skip to content

Commit

Permalink
clean up and move
Browse files Browse the repository at this point in the history
  • Loading branch information
Pari Work Temp committed Aug 13, 2024
1 parent 19c4e8b commit 5b29825
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions .github/workflows/mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,17 @@ jobs:
with:
name: my_project
path: my_project/
- name: Create config files
run: |
ls
cp resources/app-config-js-values.txt my_project/resources/app-config-js-values.txt
cp resources/eas-json-values.txt my_project/resources/easjson-values.txt
cd my_project
chmod +x scripts/setup_mobile_config.sh
echo "ran chmod"
. scripts/setup_mobile_config.sh app.config.js app-config-js-values.txt
. scripts/setup_mobile_config.sh eas.json eas-json-values.txt
- uses: actions/cache@v4
with:
path: "**/node_modules"
Expand All @@ -76,19 +87,6 @@ jobs:
working-directory: ./my_project/mobile
run: yarn install

- name: Create config files
run: |
ls
cp resources/app-config-js-values.txt my_project/resources/app-config-js-values.txt
cp resources/eas-json-values.txt my_project/resources/easjson-values.txt
echo "Ran cp command"
cd my_project
. scripts/hello-world.sh
echo "entered the directory"
chmod +x scripts/setup_mobile_config.sh
echo "ran chmod"
. scripts/setup_mobile_config.sh app.config.js app-config-js-values.txt
. scripts/setup_mobile_config.sh eas.json eas-json-values.txt


# - name: 🚀 Publish preview
Expand Down

0 comments on commit 5b29825

Please sign in to comment.