Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/release-sqlite-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
with:
fetch-depth: 0

- name: Define release name (once for all steps)
run: echo "RELEASE_NAME=$(date +'%Y%m%d%H%M')" >> $GITHUB_ENV

- name: Set up Java 17
uses: actions/setup-java@v3
with:
Expand All @@ -44,10 +47,6 @@ jobs:
ls -l generators/store/build/store-database-fr.db
ls -l generators/store/build/store-database-he.db

- name: Define release name
id: relname
run: echo "RELEASE_NAME=$(date +'%Y%m%d%H%M')" >> $GITHUB_ENV

- name: Create and push tag
run: |
git config --global user.name "github-actions"
Expand All @@ -58,7 +57,6 @@ jobs:

- name: Create GitHub release and upload artifacts
uses: softprops/action-gh-release@v2.1.0

with:
tag_name: ${{ env.RELEASE_NAME }}
name: ${{ env.RELEASE_NAME }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import io.github.kdroidfilter.database.store.Developers
* Contains functions for database operations related to applications
*/
object ApplicationsDao {

/**
* Creates a GooglePlayApplicationInfo from database data
*/
Expand Down Expand Up @@ -129,4 +129,5 @@ object ApplicationsDao {
createAppInfoWithExtras(app, developer, category, deviceLanguage, creator)
}
}
}

}
Loading