diff options
author | Blaž Hrastnik | 2021-05-10 06:48:07 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-10 06:50:15 +0000 |
commit | 83f97a7c895473f4af6e1079f7fad4bf7d1f212e (patch) | |
tree | bf656106f539a20fe98adaed10bba426d24723e6 | |
parent | 686ad5e18203e241e635eb0bf1fa3832d8fc414c (diff) |
Update workflow.
-rw-r--r-- | .github/workflows/release.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ff4116a..8159be5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,11 +1,11 @@ name: Release -on: - schedule: - - cron: '0 0 * * *' # midnight UTC +on: [push] + # schedule: + # - cron: '0 0 * * *' # midnight UTC - push: - branches: - - release + # push: + # branches: + # - release jobs: dist: @@ -13,7 +13,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - build: [linux, linux-arm, macos, win-msvc, win-gnu, win32-msvc] + build: [linux, linux-arm, macos, win-msvc] #, win-gnu, win32-msvc include: - build: linux os: ubuntu-20.04 |