mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-22 05:42:34 +03:00
ci(linux): determine correct version [skip ci]
This commit is contained in:
parent
2fff1a6f83
commit
d87569085d
6
.github/workflows/insider-linux.yml
vendored
6
.github/workflows/insider-linux.yml
vendored
@ -91,6 +91,12 @@ jobs:
|
||||
- name: Clone VSCode repo
|
||||
run: ./get_repo.sh
|
||||
|
||||
- name: Check existing VSCodium tags/releases
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CHECK_ASSETS: 'no'
|
||||
run: ./check_tags.sh
|
||||
|
||||
- name: Build
|
||||
run: ./build.sh
|
||||
|
||||
|
@ -47,7 +47,7 @@ contains() {
|
||||
echo "${ASSETS}" | grep "${1}\""
|
||||
}
|
||||
|
||||
if [[ "${ASSETS}" != "null" ]]; then
|
||||
if [[ "${ASSETS}" != "null" && "${CHECK_ASSETS}" != "no" ]]; then
|
||||
if [[ "${IS_SPEARHEAD}" == "yes" ]]; then
|
||||
if [[ -z $( contains "${APP_NAME}-${RELEASE_VERSION}-src.tar.gz" ) || -z $( contains "${APP_NAME}-${RELEASE_VERSION}-src.zip" ) ]]; then
|
||||
echo "Building because we have no SRC"
|
||||
|
Loading…
Reference in New Issue
Block a user