Skip to content

Commit

Permalink
fix(ci): use bash for all run steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablePrime committed Oct 27, 2023
1 parent 9761112 commit 983d885
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ name: Publish Library
on:
release:
types: [published]
defaults:
run:
shell: bash
jobs:
build:
# 2019, has our .NET needs, latest does not
Expand All @@ -12,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
# While this package targets .Net Framework 4.6.2, the dotnet 7 stuff will work.
- name: Get version
run: echo "VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
run: echo "VERSION=${{ github.event.release.tag_name }}" >> "$GITHUB_ENV"
- name: Read version
run: |
echo Version now: ${VERSION}
Expand Down

0 comments on commit 983d885

Please sign in to comment.