Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Actions building #48

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Build
run: go build github.com/fluofoxxo/outrun
- name: Identify (1/2)
run: git config --global user.email [email protected]
- name: Identify (2/2)
run: git config --global user.name "tails2012timnew"
- name: Upload (1/3)
run: git init
- name: Upload (2/3)
run: git pull https://github.com/tails2012timnew/outrun
- name: Upload (3/3)
run: git add outrun.exe -f
- name: Commit Changes
run: git commit -m actions
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# outrun

[![build](https://github.com/tails2012timnew/outrun/actions/workflows/go.yml/badge.svg?event=status)](https://github.com/tails2012timnew/outrun/actions/workflows/go.yml)
### Summary

Outrun is a custom server for Sonic Runners, reverse engineered from the [Sonic Runners Revival](https://sonicrunners.com/) (Now uses Outrun) project.
Expand Down