Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmcmu committed Jan 9, 2024
1 parent d2e71c8 commit 6a0b93b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/baremetal-regression-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
fetch-depth: 0
fetch-tags: true

- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch

- name: Extract Latest Tagged Version
id: extract_version
env:
Expand All @@ -43,7 +48,7 @@ jobs:
PULL_URL: ${{ github.event.pull_request.html_url }}
COMMENTS_URL: ${{ github.event.pull_request.comments_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_NAME: ${{ github.ref_name }}
BRANCH_NAME: ${{ steps.extract_branch.outputs.branch }}
shell: python
run: |
import os
Expand Down

0 comments on commit 6a0b93b

Please sign in to comment.