Short sha test

This commit is contained in:
maximo tejeda 2024-09-01 11:55:39 -04:00
parent 243f4547d2
commit 104bac8a84

View File

@ -12,3 +12,11 @@ jobs:
- name: Get Stage - name: Get Stage
run: echo "The build stage is ${{ steps.set-debug-stage.outputs.BUILD_STAGE}}" run: echo "The build stage is ${{ steps.set-debug-stage.outputs.BUILD_STAGE}}"
- name: checkout code
id: get-short-sha
uses: actions/checkout@v4
run: echo "SHORT_SHA=$(git rev-parse --short)" >> GITHUB_OUTPUT
- name: check short sha
run: echo "The short sha is ${{ steps.get-short-sha.outputs.SHORT_SHA}}"