diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 27309ed..17627a1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,13 +18,11 @@ on: branches: - 'master' - 'test*' - paths: - - 'COMMIT_ID' - workflow_dispatch: jobs: build: strategy: + fail-fast: false matrix: os: - ubuntu-18.04 @@ -62,3 +60,12 @@ jobs: shell: cmd if: | startsWith(matrix.os, 'windows') + - name: Upload Artifact + uses: actions/upload-artifact@v2 + with: + name: artifact-${{ matrix.os }}-${{ matrix.config }} + path: | + **/*.zip + **/*.so + **/*.dll + **/*.dylib diff --git a/COMMIT_ID b/COMMIT_ID index e82f217..1838211 100644 --- a/COMMIT_ID +++ b/COMMIT_ID @@ -1 +1 @@ -5a0e6c1e8589bb1dca591955b46f7c4e244b40b6 +4aa12e9e17f5ab6b140febd83185583e8b7ac9d4 diff --git a/build.sh b/build.sh index 03a0b77..58f621b 100755 --- a/build.sh +++ b/build.sh @@ -350,6 +350,7 @@ DESCRIPTION="$(echo -e "Automated build for ${TARGET_REPO_NAME} version ${COMMIT # Only release from master branch commits. # shellcheck disable=SC2153 +exit 0 if test "${GITHUB_REF}" != "refs/heads/master"; then exit 0 fi