Skip to content

Commit

Permalink
Fix workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
funilrys committed May 29, 2023
1 parent ea5ca49 commit ca79254
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Expand Up @@ -325,7 +325,7 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_DEV_API_TOKEN }}
skip_existing: true
skip-existing: true

deploy_to_docker_hub:
needs: [run_cli, run_cli_mariadb]
Expand Down Expand Up @@ -405,7 +405,7 @@ jobs:
- name: Get time for cache
id: cache_time
run: echo "time=$(date +%F-%T)" >> ${$GITHUB_OUTPUT}
run: echo "time=$(date +%F-%T)" >> ${GITHUB_OUTPUT}

- name: Set up cache
uses: actions/cache@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stable.yml
Expand Up @@ -180,7 +180,7 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true
skip-existing: true

deploy_to_docker_hub:
needs: test
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
- name: Get time for cache
id: cache_time
run: echo "time=$(date +%F-%T)" >> ${$GITHUB_OUTPUT}
run: echo "time=$(date +%F-%T)" >> ${GITHUB_OUTPUT}

- name: Set up cache
uses: actions/cache@master
Expand Down

0 comments on commit ca79254

Please sign in to comment.