nix/.forgejo/workflows/deploy-rs.yml

58 lines
1.4 KiB
YAML
Raw Normal View History

2023-12-25 03:30:44 +01:00
name: ssh-test
run-name: ${{ github.actor }} - deploy-rs
on:
push:
branches:
- main
jobs:
ssh-test:
runs-on: nixos
steps:
- name: "Runner: Info"
run: |
echo "============= pwd"
pwd
echo "============= ls -lah"
ls -lah
echo '============= id'
id
echo "============= uname -a"
uname -a
echo "============= hostname"
hostname
echo "============= /etc/os-release"
cat /etc/os-release
echo "============= whoami"
whoami
id
echo "============= cat /etc/resolv.conf"
cat /etc/resolv.conf
- name: "Setup: Headscale"
run: |
2023-12-25 03:32:10 +01:00
echo "tailscale status"
tailscale status
echo "tailscale netcheck"
tailscale netcheck
2023-12-25 03:30:44 +01:00
- uses: actions/checkout@v3
- name: "Directory Structure"
run: |
ls ${{ github.workspace }}/*
- name: "Nix Versions"
run: |
echo "nix --version"
nix --version
echo "nixos-Version"
nixos-version
- if: always()
uses: https://git.sysctl.io/actions/gotify-action@master
with:
gotify_api_base: '${{ secrets.GOTIFY_URL }}'
gotify_app_token: '${{ secrets.GOTIFY_TOKEN }}'
notification_title: '[ ${{ github.repository }}: ${{ github.workflow }} ] Build Complete'
notification_message: 'Your build has completed.'
name: "Send Notification"