|
|
@@ -65,4 +65,12 @@ jobs:
|
|
|
- name: Build and Push Image
|
|
|
run: |
|
|
|
docker buildx create --use
|
|
|
- docker buildx build --platform linux/amd64,linux/arm64 -t lhamacorp/knotes-be:latest --push .
|
|
|
+ docker buildx build --platform linux/amd64,linux/arm64 -t lhamacorp/knotes-be:latest --push .
|
|
|
+
|
|
|
+ deploy:
|
|
|
+ name: Deploy
|
|
|
+ needs: dockerize
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ steps:
|
|
|
+ - name: Trigger Portainer Webhook
|
|
|
+ run: curl --location --request POST '${{ secrets.DEPLOY_WEBHOOK }}'
|