Update sobre-nosotros.md #139
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
name: Build and deploy Jekyll site to GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
github-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π setup repo | |
uses: actions/checkout@v2.3.4 | |
with: | |
submodules: true | |
- name: π setup ruby | |
uses: ruby/setup-ruby@v1.61.1 | |
with: | |
ruby-version: 2.7.2 | |
- name: ⬑ setup node | |
uses: actions/setup-node@v2.1.4 | |
with: | |
node-version: '12' | |
- name: π¨β¬‘ install node dependencies | |
run: npm install | |
- name: π¨π install ruby dependencies & build site | |
uses: limjh16/jekyll-action-ts@v2 | |
env: | |
NODE_ENV: production | |
JEKYLL_ENV: production | |
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} | |
with: | |
enable_cache: false | |
- name: π run Algolia indexing | |
run: ALGOLIA_API_KEY='${{ secrets.ALGOLIA_API_KEY }}' bundle exec jekyll algolia | |
- name: π deploy | |
uses: peaceiris/actions-gh-pages@v3.7.3 | |
with: | |
github_token: ${{ secrets.JEKYLL_PAT }} | |
publish_dir: ./_site |