Replace invalid characters
Some checks failed
Stage / build (push) Successful in 17s
Stage / package (push) Failing after 13s

This commit is contained in:
Ethan Lane 2025-01-14 18:42:54 +00:00
parent b7a1f86125
commit b3df38a5fd
2 changed files with 4 additions and 4 deletions

View file

@ -35,7 +35,7 @@ jobs:
- name: Upload Binary
uses: actions/upload-artifact@v3
with:
name: random-bunny-${{ github.run_id }}-${{ github.event.head_commit.timestamp }}
name: random-bunny-${{ github.run_id }}-${{ github.event.head_commit.timestamp.replace(':', '-').replace('T', '_').replace('Z', '') }}
path: bin/
if-no-files-found: error

View file

@ -37,6 +37,6 @@ jobs:
- name: Upload Binary
uses: actions/upload-artifact@v3
with:
name: random-bunny-${{ github.run_id }}-${{ github.event.head_commit.timestamp }}
path: bin/
if-no-files-found: error
name: random-bunny-${{ github.run_id }}-${{ github.event.head_commit.timestamp.replace(':', '-').replace('T', '_').replace('Z', '') }}
path: bin/
if-no-files-found: error