Skip to content

Update deploy.yml

Update deploy.yml #53

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: |
sudo apt-get install libssl-dev
pip install -r requirements.txt
cd src
python -m test.tester
build:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
docker/build.sh
docker/push.sh
validator:
needs: build
runs-on: ubuntu-latest
steps:
- uses: appleboy/ssh-action@master
name: Deploy container
with:
host: ${{ variables.HOST }}

Check failure on line 41 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 41, Col: 17): Unrecognized named-value: 'variables'. Located at position 1 within expression: variables.HOST .github/workflows/deploy.yml (Line: 53, Col: 17): Unrecognized named-value: 'variables'. Located at position 1 within expression: variables.HOST
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
script: systemctl restart validator
converter:
needs: build
runs-on: ubuntu-latest
steps:
- uses: appleboy/ssh-action@master
name: Deploy convertor
with:
host: ${{ variables.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
script: systemctl restart converter