Skip to content

Commit

Permalink
Merge pull request #162 from betagouv/config/staging-deployment
Browse files Browse the repository at this point in the history
Permet le déploiement de staging depuis la branche dev
  • Loading branch information
baptou12 authored Oct 13, 2023
2 parents 7b68fac + 0597673 commit e62a763
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
name: Continuous deployment
runs-on: ubuntu-20.04
needs: [install, lint]
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -72,6 +72,7 @@ jobs:
chmod 600 ~/.ssh/eclipse
ssh -o StrictHostKeyChecking=no ${{ env.ECLIPSE_SSH_USER }}@${{ env.ECLIPSE_SSH_HOST }} -i ~/.ssh/eclipse
- name: Equinoxe Deployment
if: github.ref == 'refs/heads/main'
shell: bash
run: |
mkdir -p ~/.ssh/
Expand Down

0 comments on commit e62a763

Please sign in to comment.