Add restaurant photos to seo metadata #161
This file contains hidden or 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 VILF | |
| on: | |
| push: | |
| branches: develop | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Install system dependencies | |
| run: sudo apt-get update && sudo apt-get install -y libjpeg-dev zlib1g-dev | |
| - name: Install dependencies | |
| run: python3 -m pip install --prefer-binary -r requirements.txt | |
| - run: ./vilf build | |
| - uses: google-github-actions/auth@v0 | |
| with: | |
| credentials_json: "${{ secrets.VILF_CREDS }}" | |
| - uses: google-github-actions/setup-gcloud@v0 | |
| - run: gsutil -m rsync -R build gs://vilf-org |