Expo publish - basic action not working
See original GitHub issueDescription of the bug
Hello all! And thanks for the awesome library. I would like to know if itβs something related to Expo, or Github actions itself. Iβve set up the basic publish every push to the master repository, but i got an error when the actions is running expo publish
To Reproduce
name: Expo Publish
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12.x
- uses: expo/expo-github-action@v5
with:
expo-version: latest
expo-username: ${{ secrets.EXPO_CLI_USERNAME }}
expo-password: ${{ secrets.EXPO_CLI_PASSWORD }}
expo-cache: true
- run: yarn install
- run: expo publish
Expected behavior
To publish the package
Actual behavior
This is the error
##[error]Process completed with exit code 1.
β Edit Iβve also added EXPO_DEBUG:true and changed the expo-version to 3.13.1 but the Action is not workingβ¦
resize: can't open terminal /dev/tty
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β β
β There is a new version of expo-cli available (3.13.8). β
β You are currently using expo-cli 3.13.1 β
β Install expo-cli globally using the package manager of your choice; for example: `npm install -g expo-cli` to get the latest version β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
[15:09:04] Publishing to channel 'default'...
[15:09:05] Building iOS bundle
[15:09:05] connect ECONNREFUSED 127.0.0.1:19003
[15:09:05] Error: connect ECONNREFUSED 127.0.0.1:19003
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1137:16)
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Expo publish fails in github actions but works locally
My CI was running on ubuntu which has a case sensitive file system, so metro was not able to resolve my modules. To...
Read more >Troubleshooting build errors and crashes - Expo Documentation
A reference for troubleshooting build errors and crashes when using EAS Build. This document is under active development; the topic it covers is...
Read more >Simple automated release workflow for React Native with Expo
Today I am going to show you how to automate the deploy of your React Native application built with Expo. Requirements: Expo account....
Read more >How Expo Is Fooling Everyone - Better Programming
Hidden βgemsβ that are not revealed to developers using Expo ... allowing for various actions (creation, logs, publishing). ... Why is this a...
Read more >expo firebase not working : r/reactnative - Reddit
I followed the document : https://docs.expo.dev/guides/using-firebase/ to install firebase into my expo project with firebase version 9.1.0Β ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Awesome! Thanks for the follow up, your app looks great π Some extra tips to fine tune your setup:
.expo
because it contains information that should only be used on your development machine (not on other systems) you already did this π.expo-shared
because that contains information about image optimization, which is good to share. (you can see this in the templateβs gitignore too)yarn install
by Β±30s and keeping exact versions consistently across multiple machines.If you encounter anything else, lmk! You can also ping me on the Expo Developers slack if you run into urgent issues. Good luck and have fun developing your app! π
@byCedric thanks for everythingβ¦ now seems to work! β link to the repo