Skip to content

Commit

Permalink
Merge branch 'master' into feature/aep-support
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains committed Oct 2, 2024
2 parents 358d385 + de13a4d commit 7c9938c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build_dev_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ jobs:
archive_type: tar
archive_extension: .tgz
steps:
- name: Get branch name
id: get_branch
- name: Get branch name (Windows)
if: runner.os == 'Windows'
run: echo "BRANCH_NAME=${{ github.ref }}" | ForEach-Object {$_ -replace 'refs/heads/', ''} | Out-File -Append $env:GITHUB_ENV
env:
GITHUB_REF: ${{ github.ref }}
- name: Get branch name (Unix)
if: runner.os != 'Windows'
run: echo "BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
env:
GITHUB_REF: ${{ github.ref }}
Expand Down

0 comments on commit 7c9938c

Please sign in to comment.