Skip to content

Add contact and developer wiki notice for new contributors #3

Add contact and developer wiki notice for new contributors

Add contact and developer wiki notice for new contributors #3

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (C) swift Project Community / Contributors
# SPDX-License-Identifier: CC0-1.0
name: Build and deploy documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run REUSE lint
run: reuse lint
- uses: actions/configure-pages@v3
- name: Build
run: mkdocs build --strict
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: "site/"
deploy:
needs: build
runs-on: ubuntu-22.04
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2