We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe5d80e commit af4c1c9Copy full SHA for af4c1c9
.github/workflows/release-please.yml
@@ -0,0 +1,14 @@
1
+name: release-please
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ release-please:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: GoogleCloudPlatform/release-please-action@v2
11
+ with:
12
+ token: ${{ secrets.GITHUB_TOKEN }}
13
+ release-type: node
14
+ package-name: '@netlify/plugin-lighthouse'
CONTRIBUTING.md
@@ -1,5 +1,7 @@
# Contributing
+## Setup
+
First fork this project
```bash
@@ -16,3 +18,10 @@ git push origin my-fix
16
18
```
17
19
20
Lastly, open a pull request on Github.
21
22
+## Releasing
23
24
+1. Merge the release PR
25
+2. Switch to the default branch `git checkout master`
26
+3. Pull latest changes `git pull`
27
+4. Publish the package `npm publish`
0 commit comments