Skip to content

Commit

Permalink
ci(workflows): fixed workflows triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
MD4 committed Nov 27, 2020
1 parent 3a19e17 commit 3e2bacb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: create release

on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: create release
- 'v*'

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: publish npm

on: push
on:
push:
tags:
- 'v*'

jobs:
publish:
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

`Const`**computeShadows**(`bounds`: Bounds, `walls`: Segment2[], `light`: Vec2): Vec2[][]

*Defined in [computeShadows.ts:39](https://github.com/MD4/shadowed/blob/499bbcf/src/computeShadows.ts#L39)*
*Defined in [computeShadows.ts:39](https://github.com/MD4/shadowed/blob/3a19e17/src/computeShadows.ts#L39)*

Computes casted shadows by a light for a given set of walls within specified bounds.

Expand Down

0 comments on commit 3e2bacb

Please sign in to comment.