Skip to content

Commit 33173c3

Browse files
ci: add release-please
1 parent 1371404 commit 33173c3

6 files changed

Lines changed: 2191 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Release Please
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Release with release-please
18+
uses: google-github-actions/release-please-action@v4
19+
with:
20+
# PAT with write access to the repository
21+
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
22+
# optional. customize path to release-please-config.json
23+
config-file: release-please-config.json
24+
# optional. customize path to .release-please-manifest.json
25+
manifest-file: .release-please-manifest.json

.gitignore

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,134 @@ cython_debug/
156156
# and can be added to the global gitignore or merged into this file. For a more nuclear
157157
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
158158
#.idea/
159+
160+
# Logs
161+
logs
162+
*.log
163+
npm-debug.log*
164+
yarn-debug.log*
165+
yarn-error.log*
166+
lerna-debug.log*
167+
.pnpm-debug.log*
168+
169+
# Diagnostic reports (https://nodejs.org/api/report.html)
170+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
171+
172+
# Runtime data
173+
pids
174+
*.pid
175+
*.seed
176+
*.pid.lock
177+
178+
# Directory for instrumented libs generated by jscoverage/JSCover
179+
lib-cov
180+
181+
# Coverage directory used by tools like istanbul
182+
coverage
183+
*.lcov
184+
185+
# nyc test coverage
186+
.nyc_output
187+
188+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
189+
.grunt
190+
191+
# Bower dependency directory (https://bower.io/)
192+
bower_components
193+
194+
# node-waf configuration
195+
.lock-wscript
196+
197+
# Compiled binary addons (https://nodejs.org/api/addons.html)
198+
build/Release
199+
200+
# Dependency directories
201+
node_modules/
202+
jspm_packages/
203+
204+
# Snowpack dependency directory (https://snowpack.dev/)
205+
web_modules/
206+
207+
# TypeScript cache
208+
*.tsbuildinfo
209+
210+
# Optional npm cache directory
211+
.npm
212+
213+
# Optional eslint cache
214+
.eslintcache
215+
216+
# Optional stylelint cache
217+
.stylelintcache
218+
219+
# Microbundle cache
220+
.rpt2_cache/
221+
.rts2_cache_cjs/
222+
.rts2_cache_es/
223+
.rts2_cache_umd/
224+
225+
# Optional REPL history
226+
.node_repl_history
227+
228+
# Output of 'npm pack'
229+
*.tgz
230+
231+
# Yarn Integrity file
232+
.yarn-integrity
233+
234+
# dotenv environment variable files
235+
.env
236+
.env.development.local
237+
.env.test.local
238+
.env.production.local
239+
.env.local
240+
241+
# parcel-bundler cache (https://parceljs.org/)
242+
.cache
243+
.parcel-cache
244+
245+
# Next.js build output
246+
.next
247+
out
248+
249+
# Nuxt.js build / generate output
250+
.nuxt
251+
dist
252+
253+
# Gatsby files
254+
.cache/
255+
# Comment in the public line in if your project uses Gatsby and not Next.js
256+
# https://nextjs.org/blog/next-9-1#public-directory-support
257+
# public
258+
259+
# vuepress build output
260+
.vuepress/dist
261+
262+
# vuepress v2.x temp and cache directory
263+
.temp
264+
.cache
265+
266+
# Docusaurus cache and generated files
267+
.docusaurus
268+
269+
# Serverless directories
270+
.serverless/
271+
272+
# FuseBox cache
273+
.fusebox/
274+
275+
# DynamoDB Local files
276+
.dynamodb/
277+
278+
# TernJS port file
279+
.tern-port
280+
281+
# Stores VSCode versions used for testing VSCode extensions
282+
.vscode-test
283+
284+
# yarn v2
285+
.yarn/cache
286+
.yarn/unplugged
287+
.yarn/build-state.yml
288+
.yarn/install-state.gz
289+
.pnp.*

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "1.0.0"
3+
}

0 commit comments

Comments
 (0)