Skip to content

Commit

Permalink
ci: merge two ci workflow files into one
Browse files Browse the repository at this point in the history
  • Loading branch information
bolinocroustibat committed May 17, 2024
1 parent 7d4702c commit 5d4229b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 99 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
name: Deploy to staging when pushing on staging
name: Build and deploy when pushing on staging or main

on:
push:
branches:
- main
- staging
- feat/github-ci

jobs:

deploy-staging:

environment: staging
environment: ${{ github.ref_name == 'main' && 'prod' || 'staging' }}

name: Deploy to staging from ${{ github.ref_name }}/${{ github.sha }}

Expand Down Expand Up @@ -84,7 +85,7 @@ jobs:
script: |
cd /home/${{ secrets.CI_DEPLOY_USER }}/${{ env.CI_JOB_ID }}
mkdir -p /data/tchapbot
export COMPOSE_FILE=/home/${{ secrets.CI_DEPLOY_USER }}/${{ env.CI_JOB_ID }}/docker-compose.yml
export COMPOSE_PROJECT_NAME=albert-tchapbot
Expand Down
96 changes: 0 additions & 96 deletions .github/workflows/prod.yml

This file was deleted.

0 comments on commit 5d4229b

Please sign in to comment.