Skip to content

Commit

Permalink
add workflow_dispatch trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
xhd2015 committed May 23, 2024
1 parent 6394140 commit cf49f7c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/nightly-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
- cron: "23 0 * * *"
push:
branches: [ "trigger-nightly-test" ]
workflow_dispatch:
inputs:
dummy:
default: nothing

# 'gin-gonic/gin' ok
# 'fatedier/frp' cannot pass even with go? need to verify
Expand All @@ -24,6 +28,7 @@ jobs:
- uses: actions/checkout@v4
with:
path: xgo
ref: master

- name: Set up Go
uses: actions/setup-go@v4
Expand Down
4 changes: 2 additions & 2 deletions cmd/xgo/runtime_gen/core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
)

const VERSION = "1.0.37"
const REVISION = "f948d832e81c7e70b5cc0fc282f582d7a1069e9f+1"
const NUMBER = 232
const REVISION = "63941402b67d43bbac6c7d3eb342916bff70f2a3+1"
const NUMBER = 233

// these fields will be filled by compiler
const XGO_VERSION = ""
Expand Down
4 changes: 2 additions & 2 deletions cmd/xgo/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import "fmt"

const VERSION = "1.0.37"
const REVISION = "f948d832e81c7e70b5cc0fc282f582d7a1069e9f+1"
const NUMBER = 232
const REVISION = "63941402b67d43bbac6c7d3eb342916bff70f2a3+1"
const NUMBER = 233

func getRevision() string {
revSuffix := ""
Expand Down
4 changes: 2 additions & 2 deletions runtime/core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
)

const VERSION = "1.0.37"
const REVISION = "f948d832e81c7e70b5cc0fc282f582d7a1069e9f+1"
const NUMBER = 232
const REVISION = "63941402b67d43bbac6c7d3eb342916bff70f2a3+1"
const NUMBER = 233

// these fields will be filled by compiler
const XGO_VERSION = ""
Expand Down

0 comments on commit cf49f7c

Please sign in to comment.