Sha256: 6dce24702fc854f634c7ac7c4019741e2951867ee8b377bb1ae8f443d40fb362
Contents?: true
Size: 1.49 KB
Versions: 3
Compression:
Stored size: 1.49 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 "actions@github.com" git config --global user.name "GitHub Actions" - 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 development lint' bundle install gem update uri - 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
discorb-0.16.0 | .github/workflows/build_version.yml |
discorb-0.15.1 | .github/workflows/build_version.yml |
discorb-0.15.0 | .github/workflows/build_version.yml |