chore: updated the reason status doc (#26) #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |