Skip to content

Commit

Permalink
Fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbourelly999 committed May 16, 2024
1 parent 340fee9 commit 8e28d16
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/deployment_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
runs-on: ubuntu-latest
container:
image: ubuntu:22.04
defaults:
run:
shell: bash
steps:
- name: Install git
# Installing git for checkout action
Expand All @@ -29,10 +32,12 @@ jobs:
run: mv $GITHUB_WORKSPACE/ /home/carma-cloud
- name: Install dependencies
run: |
/home/carma-cloud/scripts/install_dependencies.sh
cd /home/carma-cloud/scripts
./install_dependencies.sh
- name: Build
run: |
/home/carma-cloud/scripts/build.sh
cd /home/carma-cloud/scripts
./build.sh
- name: Configure network and set privileges
run: |
sed -i '/<\/Engine>/ i \ \ \ \ \ <Host name="carmacloud" appBase="webapps/carmacloud" unpackWARs="false" autoDeploy="false">\n </Host>' /opt/tomcat/conf/server.xml
Expand Down

0 comments on commit 8e28d16

Please sign in to comment.