Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,11 @@ on:
branches:
- 'master'
- 'test*'
paths:
- 'COMMIT_ID'
workflow_dispatch:

jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-18.04
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion COMMIT_ID
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5a0e6c1e8589bb1dca591955b46f7c4e244b40b6
4aa12e9e17f5ab6b140febd83185583e8b7ac9d4
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down