Update main.yml #122
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
on: | |
push: | |
branches: | |
- unattended-install | |
jobs: | |
unattended_install_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Move files and run script | |
run: | | |
sudo mkdir -p /opt/lme | |
sudo cp -r * /opt/lme/ | |
cd /opt/lme | |
sudo chmod +x "/opt/lme/Chapter 3 Files/unattended_deploy.sh" | |
sudo "/opt/lme/Chapter 3 Files/unattended_deploy.sh" unattended | |
sudo docker ps | |
sleep 30 | |
sudo docker ps | |
sleep 30 | |
sudo docker ps | |