Skip to content

create deploy step

create deploy step #48

Workflow file for this run

name: Convert README.md to HTML and Publish
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Test Converts markdown text to HTML
uses: jaywcjlove/markdown-to-html-cli@main
with:
source: ./README.md
output: coverage/index.html
style: 'body { margin: 0; }'
github-corners: https://github.com/vsouza/awesome-ios
favicon: data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌐</text></svg>
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./coverage