We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1547d9 commit b1d6d99Copy full SHA for b1d6d99
.github/workflows/run-tests.yaml
@@ -42,7 +42,12 @@ jobs:
42
steps:
43
- uses: actions/checkout@v3
44
45
- - name: Slugify GITHUB_REPOSITORY
+ - name: Slugify GITHUB_REPOSITORY (win)
46
+ if: ${{ matrix.os == 'windows-latest' }}
47
+ run: echo "GITHUB_REPOSITORY_SLUG=$(echo $env:GITHUB_REPOSITORY -replace '/', '_')" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
48
+
49
+ - name: Slugify GITHUB_REPOSITORY (non-win)
50
+ if: ${{ matrix.os != 'windows-latest' }}
51
run: echo "GITHUB_REPOSITORY_SLUG=${GITHUB_REPOSITORY////_}" >> $GITHUB_ENV
52
53
- name: Set up Python ${{ matrix.python-version }}
0 commit comments