Increase buffer size #199
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: Build and Deploy to Github Pages | |
on: | |
push: | |
branches: | |
- master # Here source code branch is `master`, it could be other branch | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
# Use GitHub Actions' cache to cache dependencies on servers | |
- uses: actions/cache@v3.3.2 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
# Create timestamp.json file | |
- name: Create timestamp file | |
run: echo "{\"timestamp\":\"$(date +%s)\"}" > timestamp.json | |
# Increase Git buffer size | |
- name: Increase Git buffer size | |
run: git config --global http.postBuffer 524288000 # 500 MB | |
# Use GitHub Deploy Action to build and deploy to Github | |
- uses: jeffreytse/jekyll-deploy-action@v0.5.0 | |
with: | |
provider: 'github' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
cname: ${{ secrets.CNAME }} | |
# Add timestamp.json to build artifact | |
- name: Add timestamp to build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: timestamp | |
path: timestamp.json |