Skip to content

Commit ca79254

Browse files
committed
Fix workflows.
1 parent ea5ca49 commit ca79254

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ jobs:
325325
uses: pypa/gh-action-pypi-publish@release/v1
326326
with:
327327
password: ${{ secrets.PYPI_DEV_API_TOKEN }}
328-
skip_existing: true
328+
skip-existing: true
329329

330330
deploy_to_docker_hub:
331331
needs: [run_cli, run_cli_mariadb]
@@ -405,7 +405,7 @@ jobs:
405405
406406
- name: Get time for cache
407407
id: cache_time
408-
run: echo "time=$(date +%F-%T)" >> ${$GITHUB_OUTPUT}
408+
run: echo "time=$(date +%F-%T)" >> ${GITHUB_OUTPUT}
409409

410410
- name: Set up cache
411411
uses: actions/cache@master

.github/workflows/stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
uses: pypa/gh-action-pypi-publish@release/v1
181181
with:
182182
password: ${{ secrets.PYPI_API_TOKEN }}
183-
skip_existing: true
183+
skip-existing: true
184184

185185
deploy_to_docker_hub:
186186
needs: test
@@ -260,7 +260,7 @@ jobs:
260260
261261
- name: Get time for cache
262262
id: cache_time
263-
run: echo "time=$(date +%F-%T)" >> ${$GITHUB_OUTPUT}
263+
run: echo "time=$(date +%F-%T)" >> ${GITHUB_OUTPUT}
264264

265265
- name: Set up cache
266266
uses: actions/cache@master

0 commit comments

Comments
 (0)