Update workflows
All checks were successful
update-flake-lock / update-flake-lock (push) Successful in 59m30s

This commit is contained in:
albert 2024-06-30 10:01:17 +09:00
parent 96e6da10a4
commit 3a500a1d9b
Signed by: albert
GPG key ID: 3895DD267CA11BA9
2 changed files with 82 additions and 38 deletions

View file

@ -9,7 +9,7 @@ jobs:
deploy-rs:
runs-on: ubuntu
container:
image: ubuntu:23.10
image: ubuntu:24.04
options: --mount type=bind,src=/dev/net/tun,dst=/dev/net/tun --privileged
steps:
- name: "Runner: Info"
@ -28,7 +28,7 @@ jobs:
- name: "Setup: Runner"
run: |
apt update -y
apt install git nodejs nix-bin sudo sudo curl -y
apt install git nodejs nix-bin sudo curl -y
git config --global user.email "${{github.actor}}"
git config --global user.name "Forgejo Runner"
echo "100.64.0.14 gotify.sysctl.io" >> /etc/hosts
@ -50,8 +50,6 @@ jobs:
chmod 700 /root/.ssh
chmod 600 /root/.ssh/id_ed25519
chmod 644 /root/.ssh/id_ed25519.pub
echo "Public Key: "
cat /root/.ssh/id_ed25519.pub
- name: "Setup: Headscale Network"
run: |

View file

@ -11,49 +11,95 @@ jobs:
runs-on: ubuntu
container:
image: ubuntu:24.04
options: --mount type=bind,src=/dev/net/tun,dst=/dev/net/tun --privileged
steps:
- name: "Setup Runner"
run: |
apt update -y
apt install git nodejs nix-bin qemu-utils qemu-system-arm qemu-user-binfmt -y
git config --global user.email "${{github.actor}}"
git config --global user.name "Forgejo Runner"
echo "100.64.0.14 gotify.sysctl.io" >> /etc/hosts
- uses: actions/checkout@v3
- name: "Directory Structure"
run: |
ls ${{ github.workspace }}/*
- name: "Git Info"
run: |
git -C ${{ github.workspace }} status
git -C ${{ github.workspace }} log
git -C ${{ github.workspace }} diff
- name: "Runner: Node Info"
- name: "Runner: Info"
run: |
set -x
pwd
ls -lah
id
uname -a
hostname
cat /etc/os-release
- name: "Nix Version"
whoami
id
cat /etc/resolv.conf
- name: "Setup: Runner"
run: |
nix --version
- name: "Nix Flake Update"
apt update -y
apt install git nodejs nix-bin sudo curl -y
git config --global user.email "${{github.actor}}"
git config --global user.name "Forgejo Runner"
echo "100.64.0.14 gotify.sysctl.io" >> /etc/hosts
- name: "Setup: Tailscale Repo"
run: |
echo "Running Nix Flake Update"
cd /workspace/albert/nix
mkdir -p --mode=0755 /usr/share/keyrings
curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/lunar.noarmor.gpg | sudo tee /usr/share/keyrings/tailscale-archive-keyring.gpg >/dev/null
curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/lunar.tailscale-keyring.list | sudo tee /etc/apt/sources.list.d/tailscale.list
apt update -y
apt install tailscale -y
- name: "Setup: SSH"
run: |
rm -rf /root/.ssh
mkdir /root/.ssh
echo "${{ secrets.SSH_PUBLIC_KEY }}" > /root/.ssh/id_ed25519.pub
echo "${{ secrets.SSH_PRIVATE_KEY }}" > /root/.ssh/id_ed25519
chmod 700 /root/.ssh
chmod 600 /root/.ssh/id_ed25519
chmod 644 /root/.ssh/id_ed25519.pub
- name: "Setup: Headscale Network"
run: |
echo "tailscaled --cleanup"
sudo tailscaled --cleanup
echo ""
echo "tailscaled --state=mem 2> ~/tailscaled.log &"
sudo tailscaled --state=mem: 2> ~/tailscaled.log &
echo ""
echo "tailscale up"
sudo tailscale up \
--login-server=https://headscale.sysctl.io \
--accept-routes \
--accept-dns \
--authkey ${{ secrets.TAILSCALE_KEY }} \
--hostname forgejo-runner \
--advertise-tags "tag:forgejo,tag:container,tag:ephemeral"
sudo tailscale status
sudo tailscale netcheck
- name: "SSH and Deploy"
run: |
ssh -q -A -o StrictHostKeyChecking=no albert@framework-server \
"
set -x
eval (ssh-agent -c)
ssh-add
env | grep SSH
cd /etc/nixos/git
git pull
nix --extra-experimental-features "nix-command flakes" flake update
echo "Git Diff:"
git diff
- name: "Nix Flake Check"
run: |
echo "Running Nix Flake Check"
cd /workspace/albert/nix
nix --extra-experimental-features "nix-command flakes" flake check
nix flake update
nix flake check
"
- if: success()
name: "Sucess: Git Commit & Push"
run: |
git commit -am "[ACTIONS] Flake Update (`date +%Y-%m-%d`)"
ssh -q -A -o StrictHostKeyChecking=no albert@framework-server \
"
set -x
eval (ssh-agent -c)
ssh-add
env | grep SSH
cd /etc/nixos/git
git commit -am '[ACTIONS] Flake Update (`date +%Y-%m-%d`)'
git push
"
- if: success()
uses: https://git.sysctl.io/actions/gotify-action@master
with: