Skip to content

Commit

Permalink
phpdoc workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
battis committed Nov 24, 2022
1 parent 324537d commit 51c265c
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 11 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/phpdoc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: phpdoc

on:
push:
branches: [main]

# Allow running the workflow manually from the Actions tab
#workflow_dispatch:

# Allow GITHUB_TOKEN to deploy to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: pages
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure GitHub Pages
uses: actions/configure-pages@v1
- name: Cache phpDocumentor build files
id: phpdocumentor-cache
uses: actions/cache@v3
with:
path: .phpdoc/cache
key: ${{ runner.os }}-phpdocumentor-${{ github.sha }}
restore-keys: |
${{ runner.os }}-phpdocumentor-
- name: Build with phpDocumentor
run: docker run --rm --volume "$(pwd):/data" phpdoc/phpdoc:3 -vv --target docs --cache-folder .phpdoc/cache --template default
- name: Upload artifact to GitHub Pages
uses: actions/upload-pages-artifact@v1
with:
path: docs

deploy:
needs: build
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@v1
22 changes: 11 additions & 11 deletions .github/workflows/todo.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: "Run TODO to Issue"
on: ["push"]
name: 'TODO to Issue'
on: ['push']
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
- name: "TODO to Issue"
uses: "alstr/todo-to-issue-action@v4"
with:
AUTO_ASSIGN: true
IDENTIFIERS: "[{\"name\": \"TODO\", \"labels\": []}, {\"name\": \"FIXME\", \"labels\": [\"bug\"]}]"
build:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3'
- name: 'TODO to Issue'
uses: 'alstr/todo-to-issue-action@v4'
with:
AUTO_ASSIGN: true
IDENTIFIERS: '[{"name": "TODO", "labels": []}, {"name": "FIXME", "labels": ["bug"]}]'

0 comments on commit 51c265c

Please sign in to comment.