From 41144c8ad84bad9f79b3ebd1fa1c3aaf58687ba5 Mon Sep 17 00:00:00 2001 From: Fadi Hanna Al-Kass Date: Wed, 31 Jul 2024 12:29:37 -0700 Subject: [PATCH] Adding deployment workflow --- .github/workflows/deploy.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..e76a90e --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,35 @@ +name: Deploy site + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.0.0 + + - name: Install dependencies + run: | + gem install bundler + bundle install + + - name: Build Jekyll site + run: bundle exec jekyll build + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} + publish_branch: master + publish_dir: ./_site + external_repository: iqdevs/iqdevs.github.io