Skip to content

Commit 220c05d

Browse files
authored
Merge pull request #70 from borodun/fix-ref-name
Use slugified variables for artifact names
2 parents dbd564d + 349c788 commit 220c05d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: .github/workflows/build-and-check.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,14 @@ jobs:
5656
- name: Build docs
5757
run: ${MAKE_CMD} -C doc
5858

59+
- name: Inject slug/short variables
60+
uses: rlespinasse/github-slug-action@v4
61+
5962
- name: Upload artifacts
6063
uses: actions/upload-artifact@v3
6164
if: success() || failure()
6265
with:
63-
name: ${{ github.ref_name }}-pg${{ matrix.pg_version }}-use-healpix-${{ matrix.use_healpix }}-${{ github.run_id }}
66+
name: ${{ env.GITHUB_REF_SLUG_URL }}-pg${{ matrix.pg_version }}-use-healpix-${{ matrix.use_healpix }}-${{ github.run_id }}
6467
if-no-files-found: ignore
6568
path: |
6669
./**/*.log

0 commit comments

Comments
 (0)