Fix a couple of typos #88
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: publish | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- 'master' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages-publish" | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: actuated-4cpu-8gb | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: inlets/inlets.dev | |
fetch-depth: 1 | |
- name: Reset hostedtoolcache permissions | |
run: | | |
sudo mkdir -p /opt/hostedtoolcache | |
sudo chown -R $(whoami) /opt/hostedtoolcache | |
- name: Add rubygems | |
run: | | |
sudo apt install rubygems -y | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7' | |
bundler-cache: true | |
- name: Add bundler | |
run: | | |
sudo gem install bundler:2.2.13 | |
- name: Install deps | |
run: | | |
bundle install && yarn install | |
- name: Build site | |
run: | | |
JEKYLL_ENV=production bundle exec jekyll build -d _site | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: actuated-4cpu-8gb | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |