Sha256: ee9bbe17e0923b8168565b76ba761e157e6873cd279c83ef5350f44f13227f6f

Contents?: true

Size: 687 Bytes

Versions: 3

Compression:

Stored size: 687 Bytes

Contents

name: Deploy to GitHub pages

on:
  push:
    branches:
      - main

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true

      - name: Setup Node
        uses: actions/setup-node@v2
        with:
          node-version: "16"
          cache: "yarn"
      - run: yarn install

      - name: Build
        env:
          BRIDGETOWN_ENV: production
        run:  bin/bridgetown deploy

      - name: Deploy
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./output

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bridgetown-core-1.2.0.beta3 lib/bridgetown-core/configurations/gh-pages/gh-pages.yml
bridgetown-core-1.2.0.beta2 lib/bridgetown-core/configurations/gh-pages/gh-pages.yml
bridgetown-core-1.2.0.beta1 lib/bridgetown-core/configurations/gh-pages/gh-pages.yml