Sha256: 95b5db6e48563da7136f090ee88fa010792a5f054f9382663629611ce23cf1bf

Contents?: true

Size: 1.45 KB

Versions: 24

Compression:

Stored size: 1.45 KB

Contents

name: Build YARD by version

on:
  workflow_dispatch:
  push:
    tags: 
      - "v*"
jobs:
  main:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.0.2
          bundler-cache: true
      - name: Set up git settings
        run: |
          git config --global user.email "action@github.com"
          git config --global user.name "GitHub Action"
      - name: Clone pages
        env:
          SSH_SECRET: ${{ secrets.SSH }}
          GIT_SSH_COMMAND: ssh -i ~/ssh_secret
        run: |
          echo "$SSH_SECRET" > ~/ssh_secret
          chmod 600 ~/ssh_secret
          git clone git@github.com:discorb-lib/discorb-lib.github.io /tmp/pages
      - name: Install dependencies
        run: |
          bundle config --local with 'docs'
          bundle install
      - name: Generate document
        run: bundle exec rake document:build_all
      - name: Push document
        env:
          SSH_SECRET: ${{ secrets.SSH }}
          GIT_SSH_COMMAND: ssh -i ~/ssh_secret
        run: |
          echo "$SSH_SECRET" > ~/ssh_secret
          chmod 600 ~/ssh_secret
          cp -r ./doc/. /tmp/pages
          cd /tmp/pages
          git add -A
          git commit -m "Update: Update document"
          git update-ref -d refs/remotes/origin/user
          git push origin main -f
        continue-on-error: true

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
discorb-0.13.0 .github/workflows/build_version.yml
discorb-0.12.4 .github/workflows/build_version.yml
discorb-0.12.3 .github/workflows/build_version.yml
discorb-0.12.2 .github/workflows/build_version.yml
discorb-0.12.1 .github/workflows/build_version.yml
discorb-0.12.0 .github/workflows/build_version.yml
discorb-0.11.4 .github/workflows/build_version.yml
discorb-0.11.3 .github/workflows/build_version.yml
discorb-0.11.2 .github/workflows/build_version.yml
discorb-0.11.1 .github/workflows/build_version.yml
discorb-0.11.0 .github/workflows/build_version.yml
discorb-0.10.3 .github/workflows/build_version.yml
discorb-0.10.2 .github/workflows/build_version.yml
discorb-0.10.1 .github/workflows/build_version.yml
discorb-0.10.0 .github/workflows/build_version.yml
discorb-0.9.6 .github/workflows/build_version.yml
discorb-0.9.5 .github/workflows/build_version.yml
discorb-0.9.4 .github/workflows/build_version.yml
discorb-0.9.3 .github/workflows/build_version.yml
discorb-0.9.1 .github/workflows/build_version.yml