Skip to content

Update current.md #1691

Update current.md

Update current.md #1691

Workflow file for this run

on:
push:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: macos-latest
name: script/cibuild
steps:
- uses: actions/checkout@v4
uses: actions/jekyll-build-pages@v1

Check failure on line 11 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 11, Col: 9): 'uses' is already defined
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.0
bundler-cache: true
- name: build
run: script/bootstrap
- name: test
run: script/cibuild
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: macos-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4