Skip to content

Commit 483063a

Browse files
authored
Fix CI scripts on the 1.x branch (#469)
1 parent 49bc4ca commit 483063a

5 files changed

Lines changed: 6 additions & 48 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [1.x]
66
pull_request:
7-
branches: [main]
7+
branches: [1.x]
88

99
jobs:
1010
build:

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: CI
44

55
on:
66
push:
7-
branches: [main]
7+
branches: [1.x]
88
pull_request:
9-
branches: [main]
9+
branches: [1.x]
1010

1111
jobs:
1212
lint_build_test:

.github/workflows/publish-style-spec.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
tags:
7-
- v*
7+
- v1.*
88
paths-ignore:
99
- ".github/**"
1010
- "**/*.md"

docs/RELEASE-PROCESS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To publish this library to NPM, create a tag and push it to GitHub. Make sure that the version in ```package.json``` matches the version you define in the tag. A workflow will do all the necessary steps:
44

55
```bash
6-
git checkout main
6+
git checkout 1.x
77
git tag -a v1.14.1 -m "version 1.14.1"
88
git push origin v1.14.1
99
```

0 commit comments

Comments
 (0)