Fixes.
h3rald h3rald@h3rald.com
Thu, 05 Dec 2024 10:28:07 +0100
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
.github/workflows/release.yml
→
.github/workflows/release.yml
@@ -28,7 +28,7 @@
# Detects OS and provide Nim-friendly OS identifiers - name: Detect current OS id: os - run: echo "os=${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-13' && 'macosx' || matrix.os == 'windows-latest' && 'windows'}}" >> $GITHUB_OUTPUT + run: echo "os=${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-latest' && 'macos' || matrix.os == 'macos-13' && 'macos' || matrix.os == 'windows-latest' && 'windows'}}" >> $GITHUB_OUTPUT # Checks out the repository - uses: actions/checkout@v2