Skip to content

Commit

Permalink
Update updater.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kzhuklinets authored Aug 19, 2024
1 parent b4a11a4 commit 438b33b
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,20 @@ jobs:
run: |
cleanedFullSemVer=$(echo "${{ steps.gitversion.outputs.fullSemVer }}" | tr -d '+')
echo "::set-output name=cleanedFullSemVer::$cleanedFullSemVer"
- name: Display Variables
run: |
echo "ECOSYSTEM: ${{ matrix.suite.ecosystem }}"
echo "GITHUB_RUN_ID: ${{ github.run_id }}"
echo "GITHUB_RUN_NUMBER: ${{ github.run_number }}"
echo "GITHUB_JOB: ${{ github.job }}"
echo "GITHUB_SHA: ${{ github.sha }}"
echo "GITHUB_REF: ${{ github.ref }}"
echo "GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}"
echo "IMAGE_NAME: ${{ env.IMAGE_NAME }}"
echo "GITVERSION_SHORT_SHA: ${{ steps.gitversion.outputs.shortSha }}"
echo "GITVERSION_NUGET_VERSION_V2: ${{ steps.gitversion.outputs.nuGetVersionV2 }}"
echo "GITVERSION_MAJOR: ${{ steps.gitversion.outputs.major }}"
echo "GITVERSION_MINOR: ${{ steps.gitversion.outputs.minor }}"
- name: Build image
run: |
docker build \
Expand Down

0 comments on commit 438b33b

Please sign in to comment.