Skip to content

Use executor from arg in then_on/rescue_on/chain_on for Promises #62

Use executor from arg in then_on/rescue_on/chain_on for Promises

Use executor from arg in then_on/rescue_on/chain_on for Promises #62

Workflow file for this run

name: Publish Docs to GitHub Pages
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: read
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
html:
runs-on: ubuntu-latest
env:
BUNDLE_WITH: "documentation"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true
- run: ruby support/generate_docs.rb
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: docs
deploy:
permissions:
pages: write
id-token: write
needs: [html]
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1