Black Friday sale #211
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 | |
# Set up Ruby | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1' # Specify the Ruby version you need | |
bundler-cache: true # Automatically cache gems | |
# 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 | |
# Build your Jekyll site | |
- name: Build Jekyll site | |
run: | | |
bundle exec jekyll build | |
# Deploy to GitHub Pages | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./_site | |
cname: ${{ secrets.CNAME }} | |
enable_jekyll: true | |
# Add timestamp.json to build artifact | |
- name: Add timestamp to build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: timestamp | |
path: timestamp.json |