Replace invalid characters
This commit is contained in:
parent
b7a1f86125
commit
b3df38a5fd
2 changed files with 4 additions and 4 deletions
|
@ -35,7 +35,7 @@ jobs:
|
||||||
- name: Upload Binary
|
- name: Upload Binary
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
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/
|
path: bin/
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,6 @@ jobs:
|
||||||
- name: Upload Binary
|
- name: Upload Binary
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
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/
|
path: bin/
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
Loading…
Reference in a new issue