Saliovin is building c1a8a29def85ef890dd4c169f3f16b27a37d6410 #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
run-name: ${{ github.actor }} is building ${{ github.sha }} | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
Deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout GitHub Action" | |
uses: actions/checkout@v4 | |
- name: "Login to GitHub Container Registry" | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: "Build and Push Image" | |
run: | | |
docker build -t typetoast/frontend . | |
docker tag typetoast/frontend:latest ghcr.io/saliovin/typetoast/frontend:latest | |
docker push ghcr.io/saliovin/typetoast/frontend:latest | |
- name: Restarting Docker Compose Through SSH | |
uses: appleboy/ssh-action@v1.0.3 | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
script: sudo docker compose pull typetoast-frontend && sudo docker compose up -d --remove-orphans |