Skip to content
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.

Commit

Permalink
Build linux/arm64 image
Browse files Browse the repository at this point in the history
  • Loading branch information
IRus committed Feb 4, 2024
1 parent 9dcba09 commit 918eee4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 32 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

19 changes: 10 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
name: "Hugo build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: "Setup Hugo"
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.83.1"
hugo-version: "0.122.0"
- run: hugo --buildFuture
- run: cp public/bjug/index.ics public/bjug/calendar.ics
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: "Frontend Application"
path: "public/"
Expand All @@ -24,22 +24,23 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: "Frontend Application"
path: "public/"
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: "Login to GHCR"
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Build and push"
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
context: .
tags: ghcr.io/heapy/heapy.io:main
25 changes: 4 additions & 21 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,12 @@ description: "Free and Open-Source software"

### Open Source Software

We develop number of open-source projects:
We develop a number of open-source projects:

* [Komok](https://github.com/Heapy/komok) - Life and collaboration assistant
* [kotbot](https://github.com/Heapy/kotbot) - Telegram bot used in Kotlin chats in telegram
* [komodo](https://github.com/Heapy/komodo) - Kotlin Modular Framework
* [remark-kotlin](https://github.com/Heapy/remark-kotlin) - HTML2MD Converter
* [kpress](https://github.com/Heapy/kpress) - Modern static site generator written in Kotlin
* [Heap](https://github.com/Heapy/Heap) - Life and collaboration assistant
* And others. See [full list](https://github.com/Heapy).

We always open for contributions. If you like our projects and ideas - feel free to open issues/pull requests, use and spread this projects!

### Team

Currently, on Heapy projects works:

* [Ruslan Ibragimov](https://github.com/IRus)

### Misc

There are also archive of telegram chats:

* [@kotlin_lang](https://t.me/kotlin_lang) chat archive: [view](/t/me/kotlin_lang)
* [@kotlin_js](https://t.me/kotlin_js) chat archive: [view](/t/me/kotlin_js)
* [@kotlin_jvm](https://t.me/kotlin_jvm) chat archive: [view](/t/me/kotlin_jvm)
* [@kotlin_mobile](https://t.me/kotlin_mobile) chat archive: [view](/t/me/kotlin_mobile)
* [@kotlin_start](https://t.me/kotlin_start) chat archive: [view](/t/me/kotlin_start)
We always open for contributions.
If you like our projects and ideas – feel free to open issues/pull requests, use and spread these projects!
2 changes: 1 addition & 1 deletion themes/heapy/theme.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
name = "Heapy"
min_version = "0.68"
min_version = "0.122"

0 comments on commit 918eee4

Please sign in to comment.