Skip to content

Commit

Permalink
Fix the export variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
waldoj committed Dec 5, 2021
1 parent f5051e5 commit cbcb79f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ jobs:
name: codebase
path: .
- name: Save branch name for the deploy step
id: save_branch
run: echo "::set-output name=github_branch::${{ github.head_ref }}"
outputs:
github_branch: ${{ github.head_ref }}
github_branch: ${{ steps.save_branch.outputs.github_branch }}

deploy:
runs-on: ubuntu-18.04
Expand Down

0 comments on commit cbcb79f

Please sign in to comment.