We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7dd8b5 commit 2f1c7ecCopy full SHA for 2f1c7ec
.github/workflows/lambda.yml
@@ -14,9 +14,9 @@ jobs:
14
id: commit
15
run: |
16
if [[ '${{ github.ref }}' == 'refs/heads/master' ]]; then
17
- echo "::set-output name=sha::${{ github.sha }}"
+ echo "sha=${{ github.sha }}" >> $GITHUB_OUTPUT
18
else
19
- echo "::set-output name=sha::${{ github.event.pull_request.head.sha }}"
+ echo "sha=${{ github.event.pull_request.head.sha }}" >> $GITHUB_OUTPUT
20
fi
21
# Checkout the pull request branch
22
- name: Checkout code
0 commit comments