Skip to content

Commit

Permalink
Remove username part with slash '/' in artifact name to fix pipeline …
Browse files Browse the repository at this point in the history
…error

```
Error: Artifact name is not valid: laqieer/FEHRR-1724416773-10525878019-22fd9f164a39b23b75d22abdabbc2667ab739357. Contains the following character:  Forward slash /

Invalid characters include:  Double quote ", Colon :, Less than <, Greater than >, Vertical bar |, Asterisk *, Question mark ?, Carriage return \r, Line feed \n, Backslash \, Forward slash /

These characters are not allowed in the artifact name due to limitations with certain file systems such as NTFS. To maintain file system agnostic behavior, these characters are intentionally not allowed to prevent potential problems with downloads on different file systems.
```

https://github.com/laqieer/FEHRR/actions/runs/10525878019/job/29165534775#step:11
  • Loading branch information
laqieer committed Aug 23, 2024
1 parent 22fd9f1 commit 4044f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- uses: actions/upload-artifact@v3
with:
name: ${{ github.repository }}-${{ github.event.repository.pushed_at }}-${{ github.run_id }}-${{ github.sha }}
name: ${{ github.event.repository.name }}-${{ github.event.repository.pushed_at }}-${{ github.run_id }}-${{ github.sha }}
path: |
FEHRR.ups
FEHRR.map
Expand Down

0 comments on commit 4044f74

Please sign in to comment.