Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rubengees committed Nov 18, 2021
1 parent 6e67351 commit ac71b18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ table below) on them and then deleting the matching versions.
> Delete old versions of the packages "package-1" and "package-2" for the current repository.
```yaml
uses: smartsquaregmbh/[email protected].2
uses: smartsquaregmbh/[email protected].3
with:
names: |
package-1
Expand All @@ -47,7 +47,7 @@ with:
> Delete old versions of the packages "package-1" and "package-2" for the organization "my-organization".
```yaml
uses: smartsquaregmbh/[email protected].2
uses: smartsquaregmbh/[email protected].3
with:
organization: my-organization
names: |
Expand All @@ -58,7 +58,7 @@ with:
> Delete old versions in the form of "1.0.0-RC1" of the package "package".
```yaml
uses: smartsquaregmbh/[email protected].2
uses: smartsquaregmbh/[email protected].3
with:
version-pattern: "^\\d+\\.\\d+\\.\\d+-RC\\d+$" # The regex needs to be escaped!
names: |
Expand All @@ -68,7 +68,7 @@ with:
> Delete old versions with a lower semver version than 2.x of the package "package".
```yaml
uses: smartsquaregmbh/[email protected].2
uses: smartsquaregmbh/[email protected].3
with:
semver-pattern: "<2.x"
names: |
Expand All @@ -78,7 +78,7 @@ with:
> Delete old versions of the package "package" but keep at least 5 versions.
```yaml
uses: smartsquaregmbh/[email protected].2
uses: smartsquaregmbh/[email protected].3
with:
keep: 5
names: |
Expand All @@ -88,7 +88,7 @@ with:
> Delete version `foo-bar` of the package "package".

```yaml
uses: smartsquaregmbh/[email protected].2
uses: smartsquaregmbh/[email protected].3
with:
version: foo-bar
names: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "delete-old-packages",
"version": "0.3.2",
"version": "0.3.3",
"description": "Github Action for deleting old packages",
"main": "dist/index.js",
"repository": "https://github.com/SmartsquareGmbH/delete-old-packages",
Expand Down

0 comments on commit ac71b18

Please sign in to comment.