Skip to content

Commit 8e785ab

Browse files
committed
fix duplicate workflow run when pushing tags
1 parent 350f9e4 commit 8e785ab

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/checks.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
name: Build & Test
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- '**'
9+
pull_request:
10+
branches:
11+
- '**'
612

713
jobs:
814
build:

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Publish Package to NPM
22

33
on:
44
release:
5-
types: [published]
5+
types:
6+
- published
67

78
jobs:
89
build:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This package compiles SwiftSyntax + SwiftParser to a WASI module and exposes a s
1313
- follow simple identifier references within lexical scope
1414
- surface naive type hints where present (e.g., `let x: Int`)
1515

16-
It’s designed for program analysis pipelines like `fliskdata/analyze-tracking` and can also be used as a CLI with `npx`.
16+
It’s designed for use in program analysis pipelines like [`@flisk/analyze-tracking`](https://github.com/fliskdata/analyze-tracking) and can also be used as a CLI with `npx`.
1717

1818
## Quick Start (CLI)
1919

0 commit comments

Comments
 (0)