Skip to content

Commit

Permalink
grr
Browse files Browse the repository at this point in the history
  • Loading branch information
yophlox authored Aug 10, 2024
1 parent 750d7b9 commit 9979d07
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.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 "weenor!!"
- name: Upload (1/3)
run: git init
- name: Upload (2/3)
run: git pull https://github.com/yophlox/outrun
- name: Upload (3/3)
run: git add outrun.exe -f
- name: Commit Changes
run: git commit -m actions

0 comments on commit 9979d07

Please sign in to comment.