1.0.2 • Published 1 year ago

mac-renderer v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

MAC renderer

To configure this action in your repository, see the How to use section below.

A MAC JSON renderer and action made in JS, with an action for GitHub Pages. An example of the page can be seen here: https://ivancea.github.io/mac-renderer/

The MAC format is defined here: https://github.com/getmanfred/mac

You can edit and synchronize your MAC files with the Manfred app: https://getmanfred.com

The resulting HTML is printable using the browser's print function, as it will avoid breaking blocks (Jobs, projects, highlights).

Library

To use the library, install it with npm install mac-renderer, and use it like this:

import { ManfredAwesomicCV, generateHtml } from "mac-renderer";

const yourCv: ManfredAwesomicCV = {
  // ...
};

const html = await generateHtml(yourCv);

CLI

Usage: npx mac-renderer <input-file>.

Action

The action works by building your MAC repository and publishing it to GitHub Pages, in a gh-pages branch. This branch shouldn't be modified, as anything there will be lost on deploy.

Parameters

  • github-token: The GitHub token, to be able to deploy. It's usually taken from ${{ secrets.GITHUB_TOKEN }}

How to use

First, grant permission to actions in your repository to read and write to it. For that, go to Settings > Actions > General, and in the Workflow permissions section, select Read and write permissions.

Then, go to the repository Settings, and in the Pages tab, in Source, choose GitHub Actions. This will enable the site.

Finally, create a workflow in .github/workflows/deploy.yml with this content (Replace the branch name you want to use):

name: Deploy to GitHub Pages

on:
  # Automatic build on push, choose the branch you want to use here
  push:
    branches: "master"
  # If you want to be able to build it manually from any branch
  workflow_dispatch:

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: ivancea/mac-renderer@v2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

# Minimum required permissions
permissions:
  contents: read
  pages: write
  id-token: write

This will execute the build of the page every time you push to master, or when you manually trigger the workflow.

The build will produce an artifact with the page and automatically deploy it GitHub Pages.

After that, the GitHub page with your CV will be available at https://<username>.github.io/<repository>/.

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago