Fixes CI/CD Timeout

This commit is contained in:
2024-02-14 02:48:34 -03:00
parent cd2b3f2093
commit ef8b2b673b
2 changed files with 47 additions and 45 deletions

View File

@@ -48,6 +48,7 @@ jobs:
username: ${{ secrets.SSH_USER }} username: ${{ secrets.SSH_USER }}
port: ${{ secrets.SSH_PORT }} port: ${{ secrets.SSH_PORT }}
key: ${{ secrets.SSH_KEY }} key: ${{ secrets.SSH_KEY }}
command_timeout: 1800s
script: | script: |
sudo apt update && sudo apt install -y jq sudo apt update && sudo apt install -y jq
source ~/.profile source ~/.profile

View File

@@ -1,54 +1,55 @@
name: remote ssh command name: remote ssh command
on: on:
push: push:
branches: branches:
- staging - staging
jobs: jobs:
build: build:
name: Build name: Build
environment: staging environment: staging
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 30 timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Create Config Json File steps:
run: | - uses: actions/checkout@v4
echo "${{ secrets.CONFIG_JSON }}" | base64 -d > config.json - name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Inserts Prod Enviromental Variables - name: Create Config Json File
run: | run: |
python -m pip install --upgrade pip pipenv echo "${{ secrets.CONFIG_JSON }}" | base64 -d > config.json
pipenv install
pipenv run python setup.py -e staging -f config.json
- name: copy file via ssh - name: Inserts Prod Enviromental Variables
uses: appleboy/scp-action@master run: |
with: python -m pip install --upgrade pip pipenv
host: ${{ secrets.SSH_HOST }} pipenv install
username: ${{ secrets.SSH_USER }} pipenv run python setup.py -e staging -f config.json
port: ${{ secrets.SSH_PORT }}
key: ${{ secrets.SSH_KEY }}
source: "."
target: "infra-hideyoshi.com"
- name: executing remote ssh commands - name: copy file via ssh
uses: appleboy/ssh-action@master uses: appleboy/scp-action@master
with: with:
host: ${{ secrets.SSH_HOST }} host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }} username: ${{ secrets.SSH_USER }}
port: ${{ secrets.SSH_PORT }} port: ${{ secrets.SSH_PORT }}
key: ${{ secrets.SSH_KEY }} key: ${{ secrets.SSH_KEY }}
script: | source: "."
sudo apt update && sudo apt install -y jq target: "infra-hideyoshi.com"
source ~/.profile
cd infra-hideyoshi.com - name: executing remote ssh commands
./deploy.sh --staging uses: appleboy/ssh-action@master
./refresh.sh with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
port: ${{ secrets.SSH_PORT }}
key: ${{ secrets.SSH_KEY }}
command_timeout: 1800s
script: |
sudo apt update && sudo apt install -y jq
source ~/.profile
cd infra-hideyoshi.com
./deploy.sh --staging
./refresh.sh