Skip to content

Commit ef2e963

Browse files
committed
Adds instructions for updating this repository after a new Firebird release.
1 parent dfe418a commit ef2e963

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,3 +393,29 @@ Invoke-Build Prepare
393393
Invoke-Build Clean
394394
```
395395

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+

src/README.md.template

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,3 +327,29 @@ Invoke-Build Prepare
327327
# Clean up generated files
328328
Invoke-Build Clean
329329
```
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+
```

0 commit comments

Comments
 (0)