Skip to content

fix gh action

fix gh action #11

Workflow file for this run

name: Build site for Deployment to blog.oxrud.com
on:
push:
branches: [main]
permissions:
pages: write # to deploy to Pages
id-token: write
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install npm packages
run: npm i
- name: Setup Ruby and install gem dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Build site
env:
JEKYLL_ENV: production
run: bundle exec jekyll build
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v2
deploy:
needs: deploy

Check failure on line 42 in .github/workflows/github-pages.yml

View workflow run for this annotation

GitHub Actions / Build site for Deployment to blog.oxrud.com

Invalid workflow file

The workflow is not valid. .github/workflows/github-pages.yml (Line: 42, Col: 12): Job 'deploy' depends on job 'deploy' which creates a cycle in the dependency graph.
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2