All Projects → takahashim → review-pdf-generator-action

takahashim / review-pdf-generator-action

Licence: MIT license
builds PDF via Re:VIEW and uploads as Artifacts

Programming Languages

Dockerfile
14818 projects
shell
77523 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to review-pdf-generator-action

soldoc
A solidity documentation generator, based in NatSpec format. 📃 with standalone HTML, pdf, gitbook and docsify output ✏️ just plug and play.
Stars: ✭ 54 (+260%)
Mutual labels:  pdf-generation
action-netlify-deploy
🙌 Netlify deployments via GitHub actions
Stars: ✭ 32 (+113.33%)
Mutual labels:  github-actions
ghaction-cmake
cmake swiss army knife github docker action
Stars: ✭ 19 (+26.67%)
Mutual labels:  github-actions
csharp-docs-generator
An action that generates html documentation for C# programs to use for GitHub pages.
Stars: ✭ 21 (+40%)
Mutual labels:  github-actions
dart-package-publisher
Action to Publish Dart / Flutter Package To https://pub.dev When you need to publish a package, just bump the version in pubspec.yaml
Stars: ✭ 45 (+200%)
Mutual labels:  github-actions
setup-jdk
(DEPRECATED) Set up your GitHub Actions workflow with a specific version of AdoptOpenJDK
Stars: ✭ 32 (+113.33%)
Mutual labels:  github-actions
codeclimate-action
GitHub Action to send your code coverage to CodeClimate
Stars: ✭ 145 (+866.67%)
Mutual labels:  github-actions
Real Time Social Media Mining
DevOps pipeline for Real Time Social/Web Mining
Stars: ✭ 22 (+46.67%)
Mutual labels:  github-actions
hackernews-button
Privacy-preserving Firefox extension linking to Hacker News discussion; built with Bloom filters and WebAssembly
Stars: ✭ 73 (+386.67%)
Mutual labels:  github-actions
maven-settings-xml-action
Github Action to create maven settings (~/.m2/settings.xml)
Stars: ✭ 48 (+220%)
Mutual labels:  github-actions
scan-action
Anchore container analysis and scan provided as a GitHub Action
Stars: ✭ 140 (+833.33%)
Mutual labels:  github-actions
vue3-md-blog
✍️ Minimal config Vue3 + Markdown blog engine
Stars: ✭ 53 (+253.33%)
Mutual labels:  github-actions
actions-publish-gh-pages
🍣 A GitHub Action to publish static website using GitHub Pages
Stars: ✭ 12 (-20%)
Mutual labels:  github-actions
src2pdf
Generate a pdf report of your source code using bash and LaTeX.
Stars: ✭ 25 (+66.67%)
Mutual labels:  pdf-generation
iOSDC2020-Talk-Sample
iOSDC 2020「GitHub ActionsでiOSアプリをCIする個人的ベストプラクティス」レギュラートークのサンプルリポジトリ
Stars: ✭ 35 (+133.33%)
Mutual labels:  github-actions
Task2pdf
Kanboard - Task2PDF
Stars: ✭ 48 (+220%)
Mutual labels:  pdf-generation
apprise-ga
GitHub Action to send a dynamic push notification to every single platform thanks to the Apprise library
Stars: ✭ 18 (+20%)
Mutual labels:  github-actions
push-package-action
| Public | GitHub Action to Push a Package to Octopus Deploy
Stars: ✭ 23 (+53.33%)
Mutual labels:  github-actions
assign-author
GitHub Actions to assign author to issue or PR
Stars: ✭ 55 (+266.67%)
Mutual labels:  github-actions
pangyo-smilecook
🍱 Github Actions를 활용한 판교 한식뷔페 스마일쿡 식단 슬랙봇
Stars: ✭ 12 (-20%)
Mutual labels:  github-actions

Re:VIEW PDF Generator Action

This is a GitHub Action for Re:VIEW repository: builds PDF and uploads as Artifacts.

Name: takahashim/review-pdf-generator-action

Usage

name: build Re:VIEW PDF
on: [push]
jobs:
  build:
    name: generate PDF
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: build PDF
      uses: takahashim/review-pdf-generator-action@master
    - name: upload as Artifacts
      uses: takahashim/review-pdf-generator-action/upload-artifact@master

about upload-artifact

upload-artifact is a copy of official upload-artifact action.

The changes are:

  • inputs name and path is not required
  • default path is build/output.pdf

(in Japanese)

これはRe:VIEWリポジトリ用のGitHub Actionで、PDFをビルドしてArtifactsとして保存するものです。

GitHub Actionsのbeta版に対応しています(現在はbeta版にsign upしている方のみ利用可能です)。

使い方

以下のようなYAMLファイルを .github/workflows/main.yml ファイルなどに置きます。

name: build Re:VIEW PDF
on: [push]
jobs:
  build:
    name: generate PDF
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: build PDF
      uses: takahashim/review-pdf-generator-action@master
    - name: upload as Artifacts
      uses: takahashim/review-pdf-generator-action/upload-artifact@master

upload-artifactについて

upload-artifactofficial upload-artifact actionをコピーしたものです。

違いは以下になります:

  • inputs の namepath が省略可になっています
  • デフォルトの pathbuild/output.pdf になっています(Re:VIEW PDF Generator Actionの出力先に揃えています)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].