-
-
Notifications
You must be signed in to change notification settings - Fork 237
41 lines (37 loc) · 1.13 KB
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Deploy POD documentation to pages
on:
push:
branches: [ master ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/perl5
key: perl-pod
- uses: actions/configure-pages@v2
- name: Install packages
run: bin/cpanm -l ~/perl5 --quiet --notest Pod::ProjectDocs
- name: Generate documentation
run: ~/perl5/bin/pod2projdocs -out _site -lib perllib -title fixmystreet -desc 'Code documentation for the FixMyStreet platform' -nosourcecode
env:
PERL5LIB: /home/runner/perl5/lib/perl5
- name: Deploy to GitHub Pages
uses: cpina/github-action-push-to-another-repository@main
env:
SSH_DEPLOY_KEY: ${{ secrets.POD_DEPLOY_KEY }}
with:
source-directory: '_site'
destination-github-username: 'mysociety'
destination-repository-name: 'fixmystreet-pod'
target-branch: main