We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc7db7 commit 8ff2234Copy full SHA for 8ff2234
.github/workflows/deploy.yml
.github/workflows/publish.yml renamed to .github/workflows/publish_and_deploy.yml
@@ -38,3 +38,16 @@ jobs:
38
platforms: linux/amd64,linux/arm64
39
push: true
40
tags: activitypods/shapes:latest
41
+
42
+ - name: Deploy to shapes.activitypods.org
43
+ uses: appleboy/ssh-action@v1.0.3
44
+ with:
45
+ host: shapes.activitypods.org
46
+ username: ${{ secrets.USERNAME }}
47
+ key: ${{ secrets.PRIVATE_KEY }}
48
+ port: 22
49
+ script: |
50
+ cd apps
51
+ docker system prune --force
52
+ docker compose build shapes
53
+ docker compose up -d shapes
0 commit comments