2 Commits

Author SHA1 Message Date
Release-plz e403e22ba7 chore(release): Release v0.1.0
CI / cargo shear (push) Successful in 9m19s
Release-plz / Release-plz Release (push) Failing after 10m49s
Release-plz / Release-plz PR (push) Successful in 11m24s
CI / prek (push) Successful in 11m53s
Signed-off-by: Release-plz <release-plz@noreply.huizinga.dev>
2026-04-07 04:22:19 +02:00
Dreaded_X 8a0a583028 chore(actions): Publish Arch Linux package
CI / cargo shear (push) Successful in 10m54s
CI / prek (push) Successful in 11m57s
Release-plz / Release-plz PR (push) Successful in 6m13s
Release-plz / Release-plz Release (push) Successful in 6m48s
2026-04-07 04:21:54 +02:00
4 changed files with 91 additions and 1 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ jobs:
- name: release-plz release
env:
CARGO_REGISTRIES_INFRA_TOKEN: "Bearer ${{ secrets.RELEASE_PLZ_TOKEN }}"
run: release-plz release --git-token "${{ secrets.RELEASE_PLZ_TOKEN }}" --forge gitea --dry-run
run: release-plz release --git-token "${{ secrets.RELEASE_PLZ_TOKEN }}" --forge gitea
release-plz-pr:
name: Release-plz PR
+25
View File
@@ -0,0 +1,25 @@
name: Release
on:
push:
tags:
- "v*"
jobs:
archlinux:
name: Arch Linux
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Build package
uses: https://git.huizinga.dev/infra/archlinux-package-action@v4
with:
path: .
- name: Upload package
run: |
curl --user ${{ gitea.actor }}:${{ secrets.GITEA_TOKEN }} \
--upload-file "$(ls | grep -E 'crete-[0-9]+\.[0-9]+\.[0-9]+-[0-9]+-.*.pkg.tar.zst')" \
https://git.huizinga.dev/api/packages/infra/arch/core
+39
View File
@@ -1 +1,40 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.1.0](https://git.huizinga.dev/infra/crete/releases/tag/v0.1.0) - 2026-04-06
### <!-- 0 -->Features
- _(package)_ Added PKGBUILD
- Set user agent
- _(performance)_ Disable request features to reduce binary size
- Generate talos configs
- Show error if no clusters are found in repo
- Initial rewrite of python render tool
### <!-- 3 -->Refactor
- Big internal refactor
### <!-- 4 -->Testing
- Disable building tests
### <!-- 5 -->Miscellaneous Tasks
- _(actions)_ Publish Arch Linux package
- _(license)_ Add GPL license
- _(actions)_ Name steps
- _(actions)_ Renamed release-plz workflow file
- _(actions)_ Use committed to check pr commits
- _(actions)_ Cancel in-progress ci runs when pushing to pr
- _(docs)_ Added README
- _(actions)_ Setup workflows
- Publish to gitea registry
- _(pre-commit)_ Update pre commit config
+26
View File
@@ -5,6 +5,32 @@ and render jinja templates.
## Installation
### Arch
First import the verification key:
```bash
wget https://git.huizinga.dev/api/packages/infra/arch/repository.key -O /tmp/repository.key
sudo pacman-key --add /tmp/repository.key
sudo pacman-key --lsign-key $(gpg --show-keys /tmp/repository.key | sed -n 2p)
```
And add the following to `/etc/pacman.conf`:
```ini
[infra]
SigLevel = Required
Server = https://git.huizinga.dev/api/packages/infra/arch/core/$arch
```
You can then install `crete` by running:
```bash
sudo pacman -Sy crete
```
### Cargo install
Add the following to `~/.cargo.config.toml`:
```toml