Skip to content

Merge branch 'main' of https://github.com/codefez/codefez.github.io #65

Merge branch 'main' of https://github.com/codefez/codefez.github.io

Merge branch 'main' of https://github.com/codefez/codefez.github.io #65

Workflow file for this run

name: Jekyll Deploy
on: [push]
permissions:
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
bundler-cache: true
- run: echo "FIREBASE_API_KEY=${{ secrets.FIREBASE_API_KEY }}" >> $GITHUB_ENV
- run: bundle exec jekyll build
- uses: actions/upload-pages-artifact@v3
with:
path: ./_site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4