Sha256: 25638a3d788072ec9fd22dded2045e6fdd1bc17c72cae84b81cd10375cdb784b

Contents?: true

Size: 759 Bytes

Versions: 2

Compression:

Stored size: 759 Bytes

Contents

---
name: Doc
on: [push]
jobs:
  doc:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - name: Set up Ruby 2.6
        uses: actions/setup-ruby@v1
        with:
          ruby-version: 2.6.x
      - name: Build
        run: |
          gem install bundler
          bundle install --without=local --jobs 4 --retry 3
          bundle exec yard
      - name: Deploy Docs
        uses: JamesIves/github-pages-deploy-action@4.1.3
        if: github.ref == 'master'
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          BASE_BRANCH: master # The branch the action should deploy from.
          BRANCH: gh-pages # The branch the action should deploy to.
          FOLDER: doc # The folder the action should deploy.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
attr-gather-1.5.1 .github/workflows/doc.yml
attr-gather-1.4.0 .github/workflows/doc.yml