Skip to content

Bump CI actions and fix Swift matrix #14

Bump CI actions and fix Swift matrix

Bump CI actions and fix Swift matrix #14

Workflow file for this run

name: Docs
on:
push:
branches:
- main
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Pages
uses: actions/configure-pages@v5
- name: Set up Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: '5.7'
- name: Generate Docs
uses: fwcd/swift-docc-action@v1
with:
target: LighthouseClient
output: ./public
transform-for-static-hosting: 'true'
disable-indexing: 'true'
hosting-base-path: lighthouse-swift
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./public
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: docs
steps:
- name: Deploy Docs
uses: actions/deploy-pages@v4