mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-23 15:18:03 +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
|
runs-on: ubuntu-latest
|
||||||
needs: [push_to_registry]
|
needs: [push_to_registry]
|
||||||
steps:
|
steps:
|
||||||
- name: Deploy{% raw %}
|
- name: Deploy
|
||||||
run: |
|
run: |
|
||||||
TEMP=$(mktemp)
|
TEMP=$(mktemp){% raw %}
|
||||||
echo "${{ secrets.DEPLOY_KEY }}" > $TEMP
|
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
|
- name: Check
|
||||||
uses: nick-fields/retry@v2
|
uses: nick-fields/retry@v2
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue