Build Jekyll and Deploy to Firebase #1500
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 Jekyll and Deploy to Firebase | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
schedule: | |
- cron: "0 2 * * *" | |
env: | |
JEKYLL_ENV: production | |
YOUTUBE_API_KEY: ${{ secrets.YOUTUBE_API_KEY }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Cache Bundler 💾 | |
uses: actions/cache@v3 | |
with: | |
path: ~/.firebase, ~/.jekyll-cache, ~/vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Cache NPM packages 💾 | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-node- | |
${{ runner.OS }}- | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- name: Use Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Install dependencies 🔧 | |
run: | | |
npm ci | |
bundle config set path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: Build 🏗 | |
run: bundle exec jekyll build --trace | |
- name: Deploy to Firebase | |
if: github.ref == 'refs/heads/master' | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_VUEJS_DE }}' | |
channelId: live | |
projectId: vuejs-de | |
- name: Deploy Preview to Firebase | |
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_VUEJS_DE }}' | |
projectId: vuejs-de |