From 615e4640c6d4f5f2ee41bd4d36d9878e97b9bf9a Mon Sep 17 00:00:00 2001 From: William Brawner Date: Tue, 3 Jan 2023 21:39:32 -0700 Subject: [PATCH] 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. --- .github/workflows/docker-image.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index f3c8a2d..1b1b7ab 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -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 }} \ No newline at end of file