support dev
This commit is contained in:
parent
132080099b
commit
8a84f74ade
3 changed files with 17 additions and 0 deletions
8
.github/workflows/upload_artifact.yml
vendored
8
.github/workflows/upload_artifact.yml
vendored
|
@ -16,6 +16,14 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
name: Check out code
|
||||
|
||||
- name: Read release mode
|
||||
run: |
|
||||
release=$(jq -r '.RELEASE' version.json)
|
||||
if [$release == "dev"]; then
|
||||
echo "dev, exit"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- name: Read Plugin Version
|
||||
id: update_data
|
||||
run: |
|
||||
|
|
8
.github/workflows/upload_test_artifact.yml
vendored
8
.github/workflows/upload_test_artifact.yml
vendored
|
@ -16,6 +16,14 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
name: Check out code
|
||||
|
||||
- name: Read release mode
|
||||
run: |
|
||||
release=$(jq -r '.RELEASE' version.json)
|
||||
if [$release == "prodution"]; then
|
||||
echo "prodution, exit"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- name: Read Plugin Version
|
||||
id: update_data
|
||||
run: |
|
||||
|
|
|
@ -43,5 +43,6 @@
|
|||
"18.04"
|
||||
]
|
||||
},
|
||||
"RELEASE": "dev",
|
||||
"VERSION": "0.8.14"
|
||||
}
|
Loading…
Add table
Reference in a new issue