Skip to content

Commit bfb90f8

Browse files
authored
Merge pull request #10 from aboutcode-org/patch-release
ci: release new package-url data as a patch
2 parents aca1045 + 365a500 commit bfb90f8

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/sync-purls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ jobs:
6565
git commit -m "$(echo -e "Regenerate FST using latest PURLs\n\nSigned-off-by: AboutCode Automation <automation@aboutcode.org>")" || exit 0
6666
git push
6767
68-
- name: Bump minor version
68+
- name: Bump patch version
6969
id: bump
7070
if: steps.regen_fst.outputs.changed == 'true'
7171
run: |-
7272
git fetch --tags
73-
new_version=$(git tag --sort=version:refname | tail -n1 | awk -F'[v.]' '{ printf "%d.%d.0", $2, $3+1 }')
73+
new_version=$(git tag --sort=version:refname | tail -n1 | awk -F'[v.]' '{ printf "%d.%d.%d", $2, $3, $4+1 }')
7474
7575
echo "new_version=$new_version" >> $GITHUB_OUTPUT
7676

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,11 @@ purlvalidator.Validate("test:nuget/FluentValidation");
6363

6464
```
6565

66+
## How to get latest Package-URL data?
67+
68+
A patch release is published daily with the latest FST generated from newly mined package-urls.
69+
70+
6671
## Contribution
6772

6873
We welcome contributions from the community! If you find a bug or have an idea for a new feature, please open an issue on the GitHub repository. If you want to contribute code, you can fork the repository, make your changes, and submit a pull request.

0 commit comments

Comments
 (0)