This organization contains Actions and container definitions that are used for the projects and organizations like:
- gbraad-dotfiles/upstream in the org gbraad-dotfiles
- All projects in gbraad-devenv
- All projects in gbraad-homelab
- All projects in gbraad-apps
- ...
- name: Remove unwanted stuff
uses: gbraad-actions/remove-unwanted@v1
- name: Fetch configuration
uses: gbraad-actions/shared-config@v1
with:
config_repo: https://github.com/gbraad/shared-config.git
config_file: fedora.ini
- name: Use base settings
run: |
echo "Using base version $BASE_VERSION"
echo "Using base image $BASE_IMAGE"
- name: Tailscale
uses: gbraad-actions/tailscale-action@v1
with:
authkey: ${{ secrets.TAILSCALE_AUTHKEY }}
args: --ssh --accept-dns=false --operator=runner
- ...
- name: Hang around
if: ${{ failure() }}
run: sleep infinity # this allows you to access the runner over SSH/Tailnet
jobs:
build:
runs-on: ... # [ubunu-24.04|ubunu-24.04-arm]
container:
image: ghcr.io/gbraad-actions/fedora:stable
options: --privileged
steps:
- name: Tailscale Action
uses: gbraad-actions/start-tailscale@v1
with:
authkey: ${{ secrets.TAILSCALE_AUTHKEY }}
- name: Codium Server
if: ${{ failure() }}
uses: gbraad-actions/codium-server-action@v1
- name: Code tunnel
if: ${{ failure() }}
uses: gbraad-actions/code-tunnel-action@v1
- name: Code serve web
if: ${{ failure() }}
uses: gbraad-actions/code-serveweb-action@v1
- name: Run Machinefile commands
uses: gbraad-actions/machinefile-executor-action@v4
with:
containerfile: 'Containerfile'
context: '.'
- name: virtualization support
uses: gbraad-actions/setup-virtualization@v1
- name: Install containers tools
uses: gbraad-actions/setup-container-tools@v1
- uses: gbraad-actions/cleanup-untagged-packages@main
with:
packages: fedora, centos, ...
token: ${{ secrets.PACKAGE_CLEANUP_TOKEN }}
Fedora 41
- Example
runs-on: ... # [ubunu-24.04|ubunu-24.04-arm]
container:
image: ghcr.io/gbraad-actions/fedora:stable
options: --privileged
runs-on: ... # [ubunu-24.04|ubunu-24.04-arm]
container:
image: ghcr.io/gbraad-actions/centos:stable
options: --privileged