Workflow retry
All checks were successful
/ test (push) Successful in 3s

This commit is contained in:
mrkmntal 2025-11-03 16:12:03 -05:00
commit 56b3d8a376
2 changed files with 8 additions and 25 deletions

View file

@ -1,25 +0,0 @@
name: Build TuxDock
on:
push:
branches:
- main
- master
- dev
- feature/**
jobs:
build:
runs-on: [self-hosted]
env:
FORGEJO_SERVER_URL: https://mentalnet.xyz/forgejo
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Compile tux-dock
run: |
#!/bin/sh
g++ -std=c++17 main.cpp -o tux-dock && echo "tux-dock successfully compiled!"

View file

@ -0,0 +1,8 @@
on: [push]
jobs:
test:
runs-on: self-hosted
steps:
- run: echo "All good from tuxdock runner on $(hostname)!"