Skip to content

Commit a5592f9

Browse files
Revert "fix: testing purposes of action"
This reverts commit e227dca.
1 parent e227dca commit a5592f9

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/eas-build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: ${{ inputs.platform == 'ios' && 'macos-latest' || 'ubuntu-latest' }}
8080
permissions:
8181
contents: write
82-
environment: ${{ github.ref_name == 'main' && 'production' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'qa' && 'qa' || github.ref_name == 'development' && 'development' || github.ref_name == 'fix/actions' && 'qa' }}
82+
environment: ${{ github.ref_name == 'main' && 'production' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'qa' && 'qa' || github.ref_name == 'development' && 'development' }}
8383
steps:
8484
- name: Set environment variable
8585
run: |
@@ -91,8 +91,6 @@ jobs:
9191
echo "ENV=qa" >> $GITHUB_ENV
9292
elif [[ "${{ github.ref_name }}" == "development" ]]; then
9393
echo "ENV=development" >> $GITHUB_ENV
94-
elif [[ "${{ github.ref_name }}" == "fix/actions" ]]; then
95-
echo "ENV=qa" >> $GITHUB_ENV
9694
else
9795
echo "Invalid branch: ${{ github.ref_name }}. You can only build for main, staging, qa or development branches."
9896
exit 1

0 commit comments

Comments
 (0)