Skip to content

Update github-action-nginx.yml #24

Update github-action-nginx.yml

Update github-action-nginx.yml #24

name: Setup Nginx
on:
push:
# types:
# - closed
branches:
- master
# tags:
# - v1
jobs:
build:
# if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build Docker Image
run: echo "Build successful"
test:
# if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Run Basic Tests
run: echo "Tests successful!"
deploy:
# if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
needs: [build,test]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Deploy to ECR
run: echo "Deploy to ECR"
setup-nginx:
# if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
env:
USER_NAME: ${{ secrets.USER_NAME }}
USER_PASSWORD: ${{ secrets.USER_PASSWORD }}
needs: [build,test,deploy]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: print name
run: |
echo "USER_NAME=${env.USER_NAME}"
echo "USER_PASSWORD=${env.USER_PASSWORD}"
- name: Create and Navigate to Directory
run: |
mkdir github-action-nginx
cd github-action-nginx
touch code.html
- name: Update and Upgrade
run: sudo apt-get update && sudo apt-get upgrade -y
- name: Install Nginx
run: sudo apt-get install nginx -y
- name: Start Nginx
run: sudo service nginx start
- name: staus nginx
run: sudo systemctl status nginx