Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

Use pushes to perform releases #36

Merged
merged 2 commits into from
May 16, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Only do releases on pushes to master
  • Loading branch information
brettcannon committed May 16, 2020
commit 5ecdebd16543f01e5e1e64e4c0dfb9260b6cd88f
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Release

on: push
on:
push:
branches:
- master

jobs:
test:
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ Due to the fact that this action commits back to the repository, you cannot have
```YAML
name: Release

on: push
on:
push:
branches:
- master

jobs:
test:
Expand Down