Fix release naming in workflow
This commit is contained in:
parent
5905279881
commit
f1a3dd5f17
1 changed files with 2 additions and 2 deletions
4
.github/workflows/workflow.yml
vendored
4
.github/workflows/workflow.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
||||||
python-version: '3.9'
|
python-version: '3.9'
|
||||||
- name: Get current date
|
- name: Get current date
|
||||||
id: dateAndTime
|
id: dateAndTime
|
||||||
run: echo "dateAndTime=$(date +'%Y-%m-%d-%H-%M')" >> $GITHUB_OUTPUT
|
run: echo "dateAndTime=$(date +'%Y-%m-%d-%H:%M')" >> $GITHUB_OUTPUT
|
||||||
- name: Install mklittlefs
|
- name: Install mklittlefs
|
||||||
run: >
|
run: >
|
||||||
git clone https://github.com/earlephilhower/mklittlefs.git /tmp/mklittlefs &&
|
git clone https://github.com/earlephilhower/mklittlefs.git /tmp/mklittlefs &&
|
||||||
|
@ -59,7 +59,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
tag: main
|
tag: main
|
||||||
commit: main
|
commit: main
|
||||||
name: release-${{ steps.date.outputs.dateAndTime }}
|
name: release-${{ steps.dateAndTime.outputs.dateAndTime }}
|
||||||
artifacts: "littlefs.bin,webui.tgz"
|
artifacts: "littlefs.bin,webui.tgz"
|
||||||
allowUpdates: true
|
allowUpdates: true
|
||||||
removeArtifacts: true
|
removeArtifacts: true
|
||||||
|
|
Loading…
Reference in a new issue