Fixes #517 修改git-credential-read-only ruby脚本过时的代码 #71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Build | |
on: | |
pull_request: | |
branches: [ main, master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download bootstrap file | |
run: wget https://raw.githubusercontent.com/progit/progit2-pub/master/bootstrap.sh | |
- name: Run bootstrap | |
run: sh bootstrap.sh | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Build book | |
run: bundle exec rake book:build_action |