Skip to content

docs: update README.md to include application/pdf #85

docs: update README.md to include application/pdf

docs: update README.md to include application/pdf #85

Workflow file for this run

# Code generated by shipbuilder init 1.21.7. DO NOT EDIT.
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate next version
id: version
uses: conventional-actions/next-version@v1
- name: Generating PDF
uses: baileyjm02/markdown-to-pdf@v1
with:
input_path: README.md
output_dir: pdfs
build_html: false
- name: Upload PDF
uses: actions/upload-artifact@v3
with:
name: specification
path: pdfs
- name: Create Release
uses: conventional-actions/create-release@v1
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
with:
tag_name: ${{ steps.version.outputs.version }}
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}