Merge pull request #6 from hanriel/dev #3
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: Docker Image deployment | |
on: | |
push: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build_api: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get EDUMGT-API version from package.json | |
run: echo "CLIENT_PACKAGE_VERSION=$(node -p "require('package.json').version")" >> $GITHUB_ENV | |
- name: Set up Docker | |
uses: docker-practice/actions-setup-docker@master | |
- name: Build Docker Image | |
run: docker build -t edumgt-api:latest -t edumgt-api:${{ env.CLIENT_PACKAGE_VERSION }} . | |
- name: Setup key | |
run: | | |
set -eu | |
mkdir "$HOME/.ssh" | |
echo "${{ secrets.STAGE_ID_RSA }}" > "$HOME/.ssh/key" | |
chmod 600 "$HOME/.ssh/key" | |
- name: Deploy Docker Container | |
run: | | |
docker save edumgt-api | ssh -i $HOME/.ssh/key -o StrictHostKeyChecking=no ${{ secrets.STAGE_SERVER_USER }}@${{ secrets.STAGE_SERVER_IP }} -p ${{ secrets.STAGE_SERVER_PORT }} 'docker load' |