Skip to content

add: workflows

add: workflows #1

Workflow file for this run

name: "go-starter"
on:
push:
branches:
- development/3.5
# - master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v4
with:
go-version: '1.22.x'
- run: |
mkdir -p gen
- name: run app
run: |
go build -o gen/go-starter main.go
./gen/go-starter
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[AUTO] ${{ github.sha }}"
branch: master
commit_options: '--no-verify --signoff'
repository: .
skip_dirty_check: true
skip_fetch: true
skip_checkout: true
disable_globbing: true
create_branch: true