Skip to content

Commit eb4d06e

Browse files
hubyrodclaude
andcommitted
Add GitHub Actions workflow to deploy to Clever Cloud
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3667d0e commit eb4d06e

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deploy to Clever Cloud
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
with:
13+
fetch-depth: 0
14+
15+
- name: Push to Clever Cloud
16+
env:
17+
CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }}
18+
CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}
19+
run: |
20+
git remote add clever "https://${CLEVER_TOKEN}:${CLEVER_SECRET}@push-n3-par-clevercloud-customers.services.clever-cloud.com/app_e18aa250-0ebc-4a2d-ba9f-1383450de63c.git"
21+
git push clever main:master --force

0 commit comments

Comments
 (0)