Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Fix for Sandbox deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrekzyla committed Mar 29, 2022
1 parent 7f31369 commit dbcc9d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/sandbox_build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ jobs:
build-args: VERSION= ${{ steps.vars.outputs.version }}
tags: membraneframework/demo_webrtc_videoroom_advanced:sandbox

deploy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2

- name: Change Docker-Compose tag before deployment
id: sed_that_compose
run: sed -i -e "s/latest/sandbox/g" docker-compose.yml
Expand All @@ -59,12 +65,6 @@ jobs:
id: sed_it_once_more
run: sed -i -e "9 s/65.21.244.250/95.216.159.234/" docker-compose.yml

deploy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2

- name: Deploy docker compose to a pre-configured server
id: deploy
uses: wshihadeh/docker-deployment-action@v2
Expand Down

0 comments on commit dbcc9d2

Please sign in to comment.