Skip to content

Commit e227dca

Browse files
fix: testing purposes of action
1 parent 2277b57 commit e227dca

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/eas-build.yml

Lines changed: 3 additions & 1 deletion
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' }}
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' }}
8383
steps:
8484
- name: Set environment variable
8585
run: |
@@ -91,6 +91,8 @@ 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
9496
else
9597
echo "Invalid branch: ${{ github.ref_name }}. You can only build for main, staging, qa or development branches."
9698
exit 1

0 commit comments

Comments
 (0)