commented out old code #11
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: Production | ||
on: | ||
push: | ||
branches: [main] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v2 | ||
- name: Login to docker hub | ||
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Build docker image | ||
run: docker build -t vtmunc/vtmunc . | ||
- name: Publish images to docker hub | ||
run: docker push vtmunc/vtmunc:latest | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
# - name: Connect to SSH instance, pull image and deploy container | ||
# run: | | ||
# ssh -i ~/.ssh/id_rsa -o StrictHostKeyChecking=no [email protected] << 'EOF' | ||
# docker pull vtmunc/vtmunc:latest | ||
# docker rm -f vtmunc || true | ||
# docker run -d -p 8080:8080 --name vtmunc vtmunc/vtmunc | ||
# EOF | ||
- name: Connect to ssh instance, pull image and deploy container | ||
run: appleboy/[email protected] | ||
with: | ||
host: vtmunc.org | ||
username: webapp | ||
key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
debug: true | ||
script: | | ||
docker pull vtmunc/vtmunc:latest | ||
docker rm -f vtmunc || true | ||
docker run -d -p 8080:8080 --name vtmunc vtmunc/vtmunc |