8 Commits

Author SHA1 Message Date
daaa2b660f Exclude Taiwan as I'm having missing package errors there
Some checks are pending
Build container image / Build and push image (push) Has started running
2026-03-12 14:54:04 +09:00
1e63b0f308 Add mosh
Some checks failed
Build container image / Build and push image (push) Failing after 1m47s
2026-03-12 14:50:34 +09:00
e986ef6a61 Add dotnet-sdk-10.0 as dependency
All checks were successful
Build container image / Build and push image (push) Successful in 5m48s
2026-01-20 13:26:16 +09:00
8f67c67749 Enable scheduled action (every Sunday)
All checks were successful
Build container image / Build and push image (push) Successful in 6m29s
2025-12-15 16:30:57 +09:00
0cd1c39632 Add jq
All checks were successful
Build container image / Build and push image (push) Successful in 4m37s
2025-12-05 15:10:18 +09:00
3f79877a95 Add waypipe
All checks were successful
Build container image / Build and push image (push) Successful in 5m20s
2025-12-05 13:51:34 +09:00
dc87c182ac Merge branch 'main' of davejansen.dev:davejansen/fedora-toolbox
All checks were successful
Build container image / Build and push image (push) Successful in 4m53s
2025-12-05 12:57:35 +09:00
a1ba10e77d Add tmux. 2025-12-05 12:57:29 +09:00
2 changed files with 9 additions and 5 deletions

View File

@@ -4,8 +4,8 @@ on:
pull_request: pull_request:
branches: branches:
- main - main
#schedule: schedule:
# - cron: "05 4 */7 * *" # 4:05am every three days. - cron: "05 4 * * 0" # 4:05am every Sunday.
push: push:
branches: branches:
- main - main

View File

@@ -13,7 +13,7 @@ cp /ctx/cosign.pub /etc/pki/containers/davejansen.pub
# Add country query to all repo metalinks # Add country query to all repo metalinks
# shellcheck disable=SC2016 # shellcheck disable=SC2016
sed -i -e '/^metalink\=/s/\$releasever\&arch\=\$basearch$/\$releasever\&arch\=\$basearch\&country\=KR,JP,TW/g' /etc/yum.repos.d/*.repo sed -i -e '/^metalink\=/s/\$releasever\&arch\=\$basearch$/\$releasever\&arch\=\$basearch\&country\=KR,JP,AU/g' /etc/yum.repos.d/*.repo
# Update all existing packages # Update all existing packages
dnf5 update -y dnf5 update -y
@@ -21,6 +21,9 @@ dnf5 update -y
# Install my own layered packages # Install my own layered packages
dnf5 install -y \ dnf5 install -y \
fish \ fish \
tmux \
mosh \
waypipe \
neovim \ neovim \
ripgrep \ ripgrep \
curl wget \ curl wget \
@@ -37,8 +40,9 @@ dnf5 install -y \
weechat \ weechat \
neomutt libnotify notmuch abook isync \ neomutt libnotify notmuch abook isync \
khal vdirsyncer \ khal vdirsyncer \
newsboat newsboat \
#dotnet-sdk-8.0 \ jq \
dotnet-sdk-10.0
# Install uv # Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh curl -LsSf https://astral.sh/uv/install.sh | sh