Skip to content

Commit

Permalink
ci: update ubuntu_workflow to use env vars (#2547)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref authored Nov 21, 2024
1 parent 4c1deff commit 86aa901
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ubuntu_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,11 @@ jobs:
utcOffset: "+00:00"

- name: Write Buildscan URL to Summary
env:
TIMESTAMP: ${{ steps.current-time.outputs.formattedTime }}
BUILD_SCAN_URL: ${{ needs.build.outputs.build-scan-url }}
run: |
echo "**Timestamp:** ${{ steps.current-time.outputs.formattedTime }}" >> $GITHUB_STEP_SUMMARY
echo "**Timestamp:** $TIMESTAMP" >> $GITHUB_STEP_SUMMARY
echo "**Buildscan URL for ubuntu-workflow run:**" >> $GITHUB_STEP_SUMMARY
echo "[${{ github.run_id }}](https://github.com/Flank/flank/actions/runs/${{ github.run_id }})" >> $GITHUB_STEP_SUMMARY
echo "${{ needs.build.outputs.build-scan-url }}" >> $GITHUB_STEP_SUMMARY
echo "[$GITHUB_RUN_ID](https://github.com/Flank/flank/actions/runs/$GITHUB_RUN_ID)" >> $GITHUB_STEP_SUMMARY
echo "$BUILD_SCAN_URL" >> $GITHUB_STEP_SUMMARY

0 comments on commit 86aa901

Please sign in to comment.