Skip to content

Commit

Permalink
fix: typo in define-environment (#440)
Browse files Browse the repository at this point in the history
### What
Trying to get cicd action running on push to develop branch
  • Loading branch information
anayeaye authored Oct 14, 2024
2 parents c3919f7 + 0d74425 commit 93466b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set the environment based on the branch
id: define_environment
run: |
if [ "${{ github.ref }}" = "refs/heads/dev" ]; then
if [ "${{ github.ref }}" = "refs/heads/develop" ]; then
echo "env_name=dev" >> $GITHUB_OUTPUT
fi
- name: Print the environment
Expand Down

0 comments on commit 93466b1

Please sign in to comment.