Create main.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy pythonanywhere webapp | ||
on: [push] | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
# Upload files | ||
# ... | ||
- name: Reload webapp | ||
uses: jensvog/pythonanywhere-webapp-reload-action@v1 | ||
with: | ||
host: 'eu.pythonanywhere.com' | ||
username: {{ secrets.USERNAME }} | ||
Check failure on line 17 in .github/workflows/main.yml GitHub Actions / Deploy pythonanywhere webappInvalid workflow file
|
||
api-token: {{ secrets.API_TOKEN }} | ||
domain-name: {{ secrets.DOMAIN_NAME }} |