-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
67 additions
and
224 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,28 +7,49 @@ on: | |
|
||
jobs: | ||
build: | ||
runs-on: macos-14 | ||
runs-on: ubuntu-latest | ||
|
||
concurrency: ci-${{ github.ref }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Update Homebrew | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Clone ronn-ng repository | ||
uses: GuillaumeFalourd/[email protected] | ||
with: | ||
depth: 1 | ||
branch: 'main' | ||
owner: 'ibokuri' | ||
repository: 'ronn-ng' | ||
|
||
- name: Install Ruby and Bundler; Install ronn-ng dependencies | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.3' | ||
working-directory: ronn-ng/ | ||
bundler-cache: true | ||
|
||
- name: Make site directory | ||
run: mkdir public | ||
|
||
- name: Build site files | ||
run: | | ||
brew update | ||
- name: Install Packages | ||
cd ronn-ng/ | ||
bundle exec bin/ronn \ | ||
--html \ | ||
--output-dir="../public/" \ | ||
--manual="General Commands Manual" \ | ||
--section=1 \ | ||
--name="danh.computer" \ | ||
../md/*.md | ||
- name: Clean up | ||
run: | | ||
brew install coreutils groff gnu-sed scdoc | ||
- name: Build site | ||
run: make build | ||
cd - | ||
rm -rf ronn-ng/ | ||
- name: Add CNAME file | ||
run: | | ||
echo "danh.computer" > public/CNAME | ||
run: echo "danh.computer" > public/CNAME | ||
|
||
- name: Deploy site | ||
uses: s0/git-publish-subdir-action@develop | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
personal website | ||
================ | ||
|
||
## SYNOPSIS | ||
|
||
`danh` [_OPTIONS_] | ||
<br> | ||
`jason` [_OPTIONS_] | ||
|
||
## OPTIONS | ||
|
||
* `-h`, `--help`: | ||
Prints a short help message and exits. | ||
|
||
* `-v`, `--version`: | ||
Prints version information and exits. | ||
|
||
* `--email`=<u>ADDRESS</u>: | ||
Specifies the email address of the site owner. The default is | ||
[[email protected]](mailto:[email protected]). | ||
|
||
* `--github`=<u>USERNAME</u>: | ||
Specifies the GitHub username of the site owner. The default is | ||
[ibokuri](https://github.com). | ||
|
||
* `--employer`=<u>COMPANY</u>: | ||
Specifies the current employer of the site owner. The default is | ||
[DigitalOcean](https://digitalocean.com). | ||
|
||
## SEE ALSO | ||
|
||
2024-03-10 [Test Blog Post](https://danh.computer/test) |