Skip to content

chore(deps): update actions/checkout action to v6 - autoclosed #39

chore(deps): update actions/checkout action to v6 - autoclosed

chore(deps): update actions/checkout action to v6 - autoclosed #39

Workflow file for this run

name: Simple WebApp CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Upload build artifact
uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: src
publish:
if: github.ref == 'refs/heads/main'
needs: [ build ]
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4