Skip to content

Commit

Permalink
🔧 chore(firebase-hosting-staging.yml): change 'tags' to 'branches' in…
Browse files Browse the repository at this point in the history
… the 'on' section to specify the branch for deployment

The 'on' section in the workflow file is modified to use 'branches' instead of 'tags' to specify that the deployment should be triggered only when changes are pushed to the 'main' branch. This change ensures that the deployment workflow runs correctly based on the intended branch.
  • Loading branch information
jofftiquez committed Aug 16, 2023
1 parent 66f918e commit 8a9dcaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name: Deploy to Firebase Hosting on merge
"on":
push:
tags:
branches:
- main
jobs:
build_and_deploy:
Expand Down

0 comments on commit 8a9dcaa

Please sign in to comment.