Skip to content

Commit

Permalink
Fixed the release task
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenklassen8376 committed Dec 21, 2019
1 parent b616500 commit cd68c53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ jobs:
- uses: actions/checkout@v1

- name: Build
if: "!startsWith(github.ref, 'refs/tags/')"
run: |
./configure
make prep
make -j 4
- name: Run tests
if: "!startsWith(github.ref, 'refs/tags/')"
run: |
make -j 4 check
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: On Release

on:
release:
types:
- published
types: [published]

jobs:
docs:
Expand All @@ -12,7 +11,6 @@ jobs:
- uses: actions/checkout@v1

- name: Install Doxygen
if: github.ref == 'master'
run: |
brew install doxygen
Expand Down

0 comments on commit cd68c53

Please sign in to comment.