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 15 commits into
base: master
Choose a base branch
from
39 changes: 39 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# 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
- name: Push
run: git push
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# outrun

### 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