diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..c946b2c --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,25 @@ +name: Netlify Preview + +on: + pull_request: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Install Netlify CLI + run: npm install -g netlify-cli + + - name: Build and deploy to Netlify + run: | + netlify deploy --dir=Lets-Learn-Github --prod + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} diff --git a/Lets-Learn-Github/contributors/index.html b/Lets-Learn-Github/contributors/index.html index 8b58391..2b02f6a 100644 --- a/Lets-Learn-Github/contributors/index.html +++ b/Lets-Learn-Github/contributors/index.html @@ -42,7 +42,7 @@ /* Style for contributor image */ .contributor-image { border-radius: 50%; - margin-bottom: 10px; + margin-bottom: 9px; width: 100px; }