ci: deploy app from ci #5
Workflow file for this run
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 to Clever Cloud | |
on: | |
pull_request: | |
# pull_request_target: | |
# types: [opened, synchronize, reopened] | |
# branches: [ main ] | |
# workflow_dispatch: # Allow manual triggering for either environment | |
jobs: | |
staging: | |
# if: github.event_name == 'pull_request' || github.event.action == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Same as git fetch --unshallow | |
clean: true # Remove any untracked files or modifications | |
- name: Install Clever Tools CLI | |
run: | | |
CC_VERSION=latest | |
curl -s -O https://clever-tools.clever-cloud.com/releases/${CC_VERSION}/clever-tools-${CC_VERSION}_linux.tar.gz | |
tar -xvf clever-tools-${CC_VERSION}_linux.tar.gz | |
PATH=${PATH}:$(pwd)/clever-tools-${CC_VERSION}_linux | |
- name: Login to Clever Cloud | |
env: | |
CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }} | |
run: ./clever-tools-latest_linux/clever login --token ${{ secrets.CLEVER_TOKEN }} --secret ${{ secrets.CLEVER_SECRET }} | |
- name: Deploy backend to Clever Cloud (Staging) | |
env: | |
CLEVER_APP_ID: ${{ secrets.BE_CLEVER_APP_ID_STAGING }} | |
run: | | |
./clever-tools-latest_linux/clever link $CLEVER_APP_ID | |
./clever-tools-latest_linux/clever deploy -f | |
- name: Deploy frontend to Clever Cloud (Staging) | |
env: | |
CLEVER_APP_ID: ${{ secrets.FE_CLEVER_APP_ID_STAGING }} | |
run: | | |
./clever-tools-latest_linux/clever link $CLEVER_APP_ID | |
./clever-tools-latest_linux/clever deploy -f |