Skip to content

Instantly share code, notes, and snippets.

@pacarvalho
Created July 18, 2022 01:00
Show Gist options
  • Save pacarvalho/ff97d24256bf98781b5f90fa88f36b02 to your computer and use it in GitHub Desktop.
Save pacarvalho/ff97d24256bf98781b5f90fa88f36b02 to your computer and use it in GitHub Desktop.
Medium - Static Website with Middleman - buildspec.yml
version: 0.2
phases:
install:
runtime-versions:
ruby: 3.1
commands:
- gem install middleman
pre_build:
commands:
- bundle install
build:
commands:
- middleman build
artifacts:
files:
- "**/*"
base-directory: "build"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment