Skip to content

#50

Workflow file for this run

name: deploy
on:
push:
branches: [ "chore/ci-cd-test" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Docker Build and Push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: |
${{ secrets.DOCKER_HUB_USERNAME }}/server:${{ github.run_number }}
${{ secrets.DOCKER_HUB_USERNAME }}/server:latest
deploy:
runs-on: self-hosted
steps:
- name: Change permission
run: chmod +x /home/ubuntu/deploy.sh
- name: Deploy
run: /home/ubuntu/deploy.sh
#