Skip to content

Commit

Permalink
Deploy to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickpeterse committed Aug 6, 2024
1 parent 1ef285a commit 7e0deb3
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 2 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
name: Release
on:
workflow_dispatch:
push:
tags:
- 'v*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/inko-lang/idoc:latest
steps:
- name: Install dependencies
run: microdnf install --quiet --assumeyes tar git
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: '~/.local/share/inko/packages'
key: deps-${{ hashFiles('inko.pkg') }}
- name: Install Inko packages
run: inko pkg sync
- name: Run tests
run: inko test
- name: Build documentation
run: idoc
- name: Upload documentation
uses: actions/upload-pages-artifact@v3
with:
path: build/idoc/public

deploy:
runs-on: ubuntu-latest
needs:
- build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4

7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,11 @@ This is the homepage of my wobsite. Cool!

The `title` key is required, but the `date` key is optional.

For a more in-depth example, refer to the source code of [my personal
website](https://github.com/yorickpeterse/yorickpeterse.com/blob/main/src/main.inko).
For a more in-depth example, refer to:

- The [API documentation](https://yorickpeterse.github.io/inko-wobsite/)
- The source code of [my personal
website](https://github.com/yorickpeterse/yorickpeterse.com/blob/main/src/main.inko).

## License

Expand Down

0 comments on commit 7e0deb3

Please sign in to comment.