Skip to content

Commit

Permalink
fix: close up if
Browse files Browse the repository at this point in the history
  • Loading branch information
voodooGQ committed Feb 6, 2024
1 parent e239440 commit 893591a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ jobs:
- name: Branch Env
id: branch_env
run: |
echo "Running on branch "
echo "Running on branch "
if [ "${{ github.ref }}" == "refs/heads/develop" ]; then
echo "postfix=staging" >> $GITHUB_ENV
elif [ "${{ github.ref }}" == "refs/heads/main" ]; then
echo "postfix=production" >> $GITHUB_ENV
else
echo "postfix=staging" >> $GITHUB_ENV
fi
# # Setup Auth token to push to github packages
- name: Set NPM Config
Expand Down

0 comments on commit 893591a

Please sign in to comment.