File tree Expand file tree Collapse file tree 2 files changed +52
-0
lines changed Expand file tree Collapse file tree 2 files changed +52
-0
lines changed Original file line number Diff line number Diff line change @@ -393,3 +393,29 @@ Invoke-Build Prepare
393
393
Invoke-Build Clean
394
394
` ` `
395
395
396
+
397
+
398
+ # # Following a new Firebird release
399
+
400
+ Once a new Firebird release is published, follow these steps to update all relevant files in this repository :
401
+
402
+ ` ` ` bash
403
+ # Update assets.json from GitHub releases
404
+ Invoke-Build Update-Assets
405
+
406
+ # Update README.md from assets.json
407
+ Invoke-Build Update-Readme
408
+
409
+ # Regenerate source files
410
+ Invoke-Build Prepare
411
+
412
+ # Adds all untracked files
413
+ git add -u
414
+
415
+ # Remove logs from staging area
416
+ git reset -- generated/logs/
417
+
418
+ # Commit
419
+ git commit -M "Adds Firebird ..."
420
+ ` ` `
421
+
Original file line number Diff line number Diff line change @@ -327,3 +327,29 @@ Invoke-Build Prepare
327
327
# Clean up generated files
328
328
Invoke-Build Clean
329
329
```
330
+
331
+
332
+
333
+ ## Following a new Firebird release
334
+
335
+ Once a new Firebird release is published, follow these steps to update all relevant files in this repository:
336
+
337
+ ```bash
338
+ # Update assets.json from GitHub releases
339
+ Invoke-Build Update-Assets
340
+
341
+ # Update README.md from assets.json
342
+ Invoke-Build Update-Readme
343
+
344
+ # Regenerate source files
345
+ Invoke-Build Prepare
346
+
347
+ # Adds all untracked files
348
+ git add -u
349
+
350
+ # Remove logs from staging area
351
+ git reset -- generated/logs/
352
+
353
+ # Commit
354
+ git commit -M "Adds Firebird ..."
355
+ ```
You can’t perform that action at this time.
0 commit comments