Skip to content

Commit 0d6eae3

Browse files
First step of setup for GH Actions
1 parent 3bc6c21 commit 0d6eae3

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

.github/workflows/retype-action.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Publish Retype powered website to GitHub Pages
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
publish:
10+
name: Publish to retype branch
11+
12+
runs-on: ubuntu-latest
13+
14+
permissions:
15+
contents: write
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
20+
- uses: retypeapp/action-build@latest
21+
22+
- uses: retypeapp/action-github-pages@latest
23+
with:
24+
update-branch: true

retype.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
input: .
2+
output: .retype
3+
url: # Add your website address here
4+
branding:
5+
title: Change Code Knowledgebase
6+
label: Docs
7+
links:
8+
- text: Getting Started
9+
link: https://retype.com/guides/getting-started/
10+
footer:
11+
copyright: "© Copyright {{ year }} Change Code, Inc. All rights reserved."

welcome.md

Whitespace-only changes.

0 commit comments

Comments
 (0)