Skip to content

Commit 9b203fc

Browse files
authored
logs (#30)
1 parent 394741a commit 9b203fc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
- id: environment
1616
shell: bash
1717
run: |
18+
echo "event_name: ${{ github.event_name }}"
19+
echo "ref: ${{ github.ref }}"
20+
1821
if [[ ${{ github.event_name }} == 'push' ]]; then
1922
echo "environment=production" >> $GITHUB_OUTPUT
2023
echo "url=https://test-github-features.fly.dev" >> $GITHUB_OUTPUT
@@ -25,6 +28,8 @@ jobs:
2528
echo "environment=development" >> $GITHUB_OUTPUT
2629
echo "url=https://test-github-features-staging.fly.dev" >> $GITHUB_OUTPUT
2730
fi
31+
32+
echo "environment=\"${{ steps.environment.outputs.environment }}\""
2833
deploy:
2934
needs: environment
3035
if: ${{ needs.environment.outputs.environment }}

0 commit comments

Comments
 (0)