Sha256: 3ae3bd9f174c368d493eee75ce69e911ef48266e954e2f5b55e4f6fbc05568d6
Contents?: true
Size: 982 Bytes
Versions: 1
Compression:
Stored size: 982 Bytes
Contents
name: Build Documentation on: repository_dispatch: types: [documentation] concurrency: group: 'docs' jobs: docs: name: Build gem documentation runs-on: ubuntu-22.04 timeout-minutes: 5 steps: - uses: actions/checkout@v4 - name: Install the correct Ruby version uses: ruby/setup-ruby@v1 with: ruby-version: 2.5 bundler-cache: true rubygems: '3.3.26' - name: Prepare the virtual environment uses: hausgold/actions/ci@master with: clone_token: '${{ secrets.CLONE_TOKEN }}' settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}' settings: '${{ github.repository }}' target: ci/gem-test - name: Build gem documentation run: make docs - name: Upload the code coverage report run: coverage - name: Add this job to the commit status run: commit-status '${{ job.status }}' if: always()
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rimless-1.5.1 | .github/workflows/documentation.yml |