Skip to content

Added a workflow

Added a workflow #1

Workflow file for this run

name: Deploy Javascript StudyJam Page

Check failure on line 1 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

(Line: 22, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions.checkout@v4'
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions.checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifacts
uses: actions/upload-pages-artifact@v3
with:
path: "src"
- name: Deploy to Github Pages
id: deployment
uses: actions/deploy-pages@v4