From d57c64d41749b259f0e622c29545be1cf6cbc462 Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:36:08 -0500 Subject: [PATCH 01/10] Create go.yml --- .github/workflows/go.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..0ee7422 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,28 @@ +# 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: ubuntu-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 -v ./... + + - name: Test + run: go test -v ./... From 8eb5d8e49adc33ec0f078edfa872a386732c1197 Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:38:22 -0500 Subject: [PATCH 02/10] Update go.yml --- .github/workflows/go.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0ee7422..38d403e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -22,7 +22,4 @@ jobs: go-version: '1.20' - name: Build - run: go build -v ./... - - - name: Test - run: go test -v ./... + run: go build github.com/fluofoxxo/outrun From bbef0a6303626a7ebb27dfe6c4c2a1ad3c8b2404 Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:40:12 -0500 Subject: [PATCH 03/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 77a5078..6cb1082 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # outrun - +[![Go](https://github.com/tails2012timnew/outrun/actions/workflows/go.yml/badge.svg)](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. From 67397db419adb37cdbf35792a45aa2b6a8b0333b Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:41:36 -0500 Subject: [PATCH 04/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6cb1082..2be7ece 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # outrun -[![Go](https://github.com/tails2012timnew/outrun/actions/workflows/go.yml/badge.svg)](https://github.com/tails2012timnew/outrun/actions/workflows/go.yml) +[![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. From 4407a24608eea0aaa918e65a973972eabbf83752 Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:43:12 -0500 Subject: [PATCH 05/10] Update go.yml --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 38d403e..185aee0 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@v4 From 993b2fed49e8c9cf7b703d35a3e448c9146cc4bc Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:55:10 -0500 Subject: [PATCH 06/10] Update go.yml Updated so it will hopefully upload the build --- .github/workflows/go.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 185aee0..a5b217a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,3 +23,11 @@ jobs: - name: Build run: go build github.com/fluofoxxo/outrun + - 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 + - name: Commit Changes + run: git commit From 44c436a3842ebc6dbd110c3deaf32d626b7ad1e6 Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:59:04 -0500 Subject: [PATCH 07/10] add -f to go.yml --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a5b217a..f3e103f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,6 +28,6 @@ jobs: - name: Upload (2/3) run: git pull https://github.com/tails2012timnew/outrun - name: Upload (3/3) - run: git add outrun.exe + run: git add outrun.exe -f - name: Commit Changes run: git commit From 2346de0ebf47cf7ad86a9b0809644d1477fa3da0 Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 13:04:14 -0500 Subject: [PATCH 08/10] Update go.yml for hopefully the last time (unless we make a pull request) --- .github/workflows/go.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index f3e103f..d8879cf 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,6 +23,10 @@ jobs: - name: Build run: go build github.com/fluofoxxo/outrun + - name: Identify (1/2) + run: git config --global user.email timothyheironimus6@gmail.com + - name: Identify (2/2) + run: git config --global user.name "tails2012timnew" - name: Upload (1/3) run: git init - name: Upload (2/3) From f4b9918e52ec485c822befcb4bc100fd1fdfd5c0 Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 13:11:51 -0500 Subject: [PATCH 09/10] Update go.yml --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d8879cf..0517656 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -34,4 +34,4 @@ jobs: - name: Upload (3/3) run: git add outrun.exe -f - name: Commit Changes - run: git commit + run: git commit -m actions From 67f3818dbaaa86e22da404394f254f658ec3d8ec Mon Sep 17 00:00:00 2001 From: tails2012timnew <152324947+tails2012timnew@users.noreply.github.com> Date: Sat, 29 Jun 2024 13:30:44 -0500 Subject: [PATCH 10/10] Update README.md so It does not contain my temporary badge --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 2be7ece..c55d5cf 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ # 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.