Add note on inlets-operator #4
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
# AE: Not needed since any push is already build and published automatically. | |
# name: build | |
# on: | |
# pull_request: | |
# branches: | |
# - '*' | |
# push: | |
# branches: | |
# - master | |
# permissions: | |
# contents: read | |
# pages: write | |
# id-token: write | |
# # Allow one concurrent deployment | |
# concurrency: | |
# group: "pages-build" | |
# 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 |