Skip to content

fix(dart_frog_cli): honor workspace pubspec.lock during builds (#1855) #1101

fix(dart_frog_cli): honor workspace pubspec.lock during builds (#1855)

fix(dart_frog_cli): honor workspace pubspec.lock during builds (#1855) #1101

Workflow file for this run

name: docs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths:
- ".github/workflows/docs.yaml"
- "docs/**"
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
name: 🌐 Site Build
steps:
- name: πŸ“š Git Checkout
uses: actions/checkout@v5
- name: πŸ“¦ Build Site
uses: ./.github/actions/astro_site
with:
working_directory: ./docs
deploy:
needs: build
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: πŸš€ Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4