diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index c84a722..715454c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -9,6 +9,7 @@ on: schedule: - cron: '0 0 * * *' push: + branches: [ master ] pull_request: branches: [ master ] diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a9b32c3..5373e3c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -9,6 +9,7 @@ on: schedule: - cron: '0 0 * * *' push: + branches: [ master ] pull_request: branches: [ master ] diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 5765149..9bd78bf 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -9,6 +9,7 @@ on: schedule: - cron: '0 0 * * *' push: + branches: [ master ] pull_request: branches: [ master ] diff --git a/check_tags.sh b/check_tags.sh index b93a3f2..fbddf1d 100755 --- a/check_tags.sh +++ b/check_tags.sh @@ -310,7 +310,11 @@ if [ "${VSCODIUM_ASSETS}" != "null" ]; then fi fi else - if [[ "${OS_NAME}" == "linux" ]]; then + if [[ "${OS_NAME}" == "windows" ]]; then + if [[ "${VSCODE_ARCH}" == "arm64" ]]; then + export SHOULD_BUILD_REH="no" + fi + elif [[ "${OS_NAME}" == "linux" ]]; then if [[ "${VSCODE_ARCH}" != "x64" ]]; then export SHOULD_BUILD_APPIMAGE="no" fi