Skip to content

Commit

Permalink
use builtin instead of output
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpricethesecond committed Jul 11, 2024
1 parent 1d46ef6 commit 24e9fd2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ jobs:

steps:

- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
# - name: Extract branch name
# shell: bash
# # run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
# run: echo "{name}={branch}" >> $GITHUB_OUTPUT
# id: extract_branch

- name: Debug release name
shell: bash
run: echo ${{ steps.extract_branch.outputs.branch }}
run: echo ${{ github.ref_name }}

# - name: Checkout
# uses: actions/checkout@v3
Expand Down

0 comments on commit 24e9fd2

Please sign in to comment.