mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 06:23:54 +01:00
Fix publish action
This commit is contained in:
parent
5d8efbda70
commit
1ba23f278e
1 changed files with 3 additions and 3 deletions
|
@ -37,11 +37,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
needs: [push_to_registry]
|
||||
steps:
|
||||
- name: Deploy{% raw %}
|
||||
- name: Deploy
|
||||
run: |
|
||||
TEMP=$(mktemp)
|
||||
TEMP=$(mktemp){% raw %}
|
||||
echo "${{ secrets.DEPLOY_KEY }}" > $TEMP
|
||||
ssh -o StrictHostKeyChecking=no -i $TEMP -p ${{ secrets.DEPLOY_PORT }} ${{ secrets.DEPLOY_USERNAME }}@${{ secrets.DEPLOY_HOST }} /mnt/data/{{cookiecutter.project_slug}}/update{% endraw %}
|
||||
ssh -o StrictHostKeyChecking=no -i $TEMP -p ${{ secrets.DEPLOY_PORT }} ${{ secrets.DEPLOY_USERNAME }}@${{ secrets.DEPLOY_HOST }}{% endraw %} /mnt/data/{{cookiecutter.project_slug}}/update
|
||||
- name: Check
|
||||
uses: nick-fields/retry@v2
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue