We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77fd566 commit 715ca3fCopy full SHA for 715ca3f
.github/workflows/build.yml
@@ -6,6 +6,11 @@ on:
6
pull_request:
7
branches: [ "master" ]
8
workflow_dispatch:
9
+ inputs:
10
+ ref-commit-id:
11
+ description: 'Ref main repo branch commit id (default is master latest one )'
12
+ required: false
13
+ default: 'master'
14
15
jobs:
16
build:
@@ -20,7 +25,7 @@ jobs:
20
25
21
26
- name: Run Examples generate original html files with go-echarts
22
27
run: |
23
- go get github.com/go-echarts/go-echarts/v2@master
28
+ go get github.com/go-echarts/go-echarts/v2@${{ github.event.inputs.ref-commit-id }}
24
29
echo "Currently working on go-echarts version ===>"
30
cat go.mod
31
go mod tidy
0 commit comments