This repository holds the weblog.lol GitHub Action and documentation. All other omg.lol material (including weblog.lol stuff) can be found in the omg.lol repository.
- 
First, create a GitHub repo to hold your weblog content.
 - 
Add the file
.github/workflows/main.ymlwith this content in it: 
on: [push]
jobs:
  weblog_import:
    runs-on: ubuntu-latest
    name: weblog.lol
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 2
      - id: weblog_import
        uses: neatnik/weblog.lol@v1
        env:
          ADDRESS: your-address-here
          WEBLOG_API_KEY: ${{ secrets.WEBLOG_API_KEY }}
- 
Change the
your-address-herevalue above to your own omg.lol address (just the address itself, e.g.foobar). - 
In your repo settings, click Secrets, and then Actions. Click New repository secret, and add the following:
 
- Name: 
WEBLOG_API_KEY - Secret: your omg.lol API key (you can find this on your omg.lol account page, at the very bottom)
 
- 
Add a folder to your repo called
weblog. You can store your posts here, using whatever directory structure you’d like. - 
Optional: Add a folder to your repo called
configuration. In that folder, you can store yourtemplate.htmlfile and yourconfiguration.txtfile if you’d like to manage your template and configuration through your repo.