Sha256: 5074d15e01e2f304bfeb9456a20b35e63d5436b235c3718b87ef68aa2f45d1a0
Contents?: true
Size: 957 Bytes
Versions: 21
Compression:
Stored size: 957 Bytes
Contents
name: Generate docs on: release: types: [published] jobs: build-and-deploy-docs: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2.3.1 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. with: persist-credentials: false - name: Setup Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Generate docs run: bundle exec yard -o doc - name: Deploy uses: JamesIves/github-pages-deploy-action@3.7.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages # The branch the action should deploy to. FOLDER: doc # The folder the action should deploy. CLEAN: true # Automatically remove deleted files from the deploy branch
Version data entries
21 entries across 21 versions & 1 rubygems