Skip to content

Commit

Permalink
repair
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Sep 11, 2024
1 parent c1e5003 commit b5fa985
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/actionstest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
- name: Extract Branch name
id: extract_branch
shell: bash
run: echo "branch=${{env.GITHUB_REF_NAME}}" >> $GITHUB_OUTPUT
run: |
echo REF=${GITHUB_REF}
echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT
- name: IRC notification
uses: Gottox/irc-message-action@v2
with:
Expand All @@ -33,7 +35,7 @@ jobs:
nickname: GitHub
message: >
${{ github.actor }} started a build of unicodetest
[${{ env.branch }}]
[${{ steps.extract_branch.outputs.branch }}]
"${{ github.event.head_commit.message }}"
build:
Expand Down

0 comments on commit b5fa985

Please sign in to comment.