From a3275de8a1bac26d9e1bab2965bc577d1cce47c8 Mon Sep 17 00:00:00 2001 From: Blaquewithaq Date: Sun, 11 Dec 2022 12:49:34 -0600 Subject: [PATCH] cosmetic changes --- .github/workflows/build_emscripten.yml | 8 ++++++-- .github/workflows/build_linux.yml | 8 ++++++-- .github/workflows/build_osx.yml | 8 ++++++-- .github/workflows/build_windows.yml | 8 ++++++-- .github/workflows/push_release.yml | 4 ---- 5 files changed, 24 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build_emscripten.yml b/.github/workflows/build_emscripten.yml index a399ed104..1b36960a7 100644 --- a/.github/workflows/build_emscripten.yml +++ b/.github/workflows/build_emscripten.yml @@ -2,10 +2,14 @@ name: emscripten on: push: - branches: "*" + branches: + - "*" + tags: + - "*" pull_request: - branches: "*" + branches: + - "*" jobs: build: diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 57f5725a9..76c304ca8 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -2,10 +2,14 @@ name: linux_x64 on: push: - branches: "*" + branches: + - "*" + tags: + - "*" pull_request: - branches: "*" + branches: + - "*" jobs: build: diff --git a/.github/workflows/build_osx.yml b/.github/workflows/build_osx.yml index a6b177b83..72f3efe5a 100644 --- a/.github/workflows/build_osx.yml +++ b/.github/workflows/build_osx.yml @@ -2,10 +2,14 @@ name: osx_x64 on: push: - branches: "*" + branches: + - "*" + tags: + - "*" pull_request: - branches: "*" + branches: + - "*" jobs: build: diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index aa2bb8ab0..5675798bf 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -2,10 +2,14 @@ name: windows_x64 on: push: - branches: "*" + branches: + - "*" + tags: + - "*" pull_request: - branches: "*" + branches: + - "*" jobs: build: diff --git a/.github/workflows/push_release.yml b/.github/workflows/push_release.yml index 9241df58e..87c4cdb41 100644 --- a/.github/workflows/push_release.yml +++ b/.github/workflows/push_release.yml @@ -1,7 +1,3 @@ -# 1) download artifacts from each action and zip up -# 2) get all commits between last version and new version use as release context -# 3) auto create github release based on tag with "*-release" - name: push_release on: