-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change maven artifactId to sdk-android (#235)
* Remove github_actor * Use custom git commands instead * Grab from cargo file instead * Add workflow for cleaning up old packages * Only specify min-versions-to-keep * Update name --------- Co-authored-by: Matt Bishop <[email protected]>
- Loading branch information
1 parent
2519876
commit 0185899
Showing
4 changed files
with
44 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
name: Delete old packages | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
delete: | ||
name: Cleanup Android SDK | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/delete-package-versions@0d39a63126868f5eefaa47169615edd3c0f61e20 # v4.1.1 | ||
with: | ||
package-name: com.bitwarden.sdk-android | ||
package-type: maven | ||
min-versions-to-keep: 25 | ||
|
||
# Ignore versions only containing version numbers | ||
ignore-versions: '^\\d*\\.\\d*\\.\\d*$' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters