Skip to content

Update README.md

Update README.md #23

Workflow file for this run

# 1. Build and Push image to a remote registry
# 2. Deploy with Qovery
name: Publish Docker image and Deploy with Qovery
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
deploy_with_qovery:
name: Push Docker image to Docker Hub and Deploy with Qovery
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Deploy with Qovery
env:
QOVERY_CLI_ACCESS_TOKEN: ${{ secrets.QOVERY_CLI_ACCESS_TOKEN }}
shell: bash
run: |
# Download and install Qovery CLI
curl -s https://get.qovery.com | bash
qovery container deploy \
--organization <your_org_name> \
--project <your_project_name> \
--environment <your_environment_name> \
--container <your_qovery_container_name> \
--tag ${{ github.sha }} \
--watch