Skip to content

Commit

Permalink
Merge pull request #70 from borodun/fix-ref-name
Browse files Browse the repository at this point in the history
Use slugified variables for artifact names
  • Loading branch information
vitcpp authored Sep 28, 2023
2 parents dbd564d + 349c788 commit 220c05d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-and-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,14 @@ jobs:
- name: Build docs
run: ${MAKE_CMD} -C doc

- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v4

- name: Upload artifacts
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: ${{ github.ref_name }}-pg${{ matrix.pg_version }}-use-healpix-${{ matrix.use_healpix }}-${{ github.run_id }}
name: ${{ env.GITHUB_REF_SLUG_URL }}-pg${{ matrix.pg_version }}-use-healpix-${{ matrix.use_healpix }}-${{ github.run_id }}
if-no-files-found: ignore
path: |
./**/*.log
Expand Down

0 comments on commit 220c05d

Please sign in to comment.