Remove deploy step from GitHub action

The docker image will still be published to the registry, it'll just no longer auto-update my own personal server.
This commit is contained in:
William Brawner 2023-01-03 21:39:32 -07:00
parent f91043d3a8
commit 506cb31127

View file

@ -43,14 +43,4 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
script: |
docker compose pull twigs
docker compose up -d --build twigs
docker image prune -f
labels: ${{ steps.meta.outputs.labels }}