Skip to content

Commit 8969fc6

Browse files
2 parents 4a3d7f4 + 3e7178a commit 8969fc6

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
5656
npx bumpp ${{ env[inputs.version] }} -y -r --commit "chore(release): v%s" --no-push
5757
58-
export VERSION=$(git describe --tags --abbrev=0 | sed 's/^v//')
58+
export VERSION=$(git describe --tags --abbrev=0 | sed 's/^v//')
5959
sed -E "s/^appVersion:.+$/appVersion: '$VERSION'/" -i install/kubernetes/github-actions-cache-server/Chart.yaml
6060
git stage install/kubernetes/github-actions-cache-server/Chart.yaml
6161
git commit -n --no-edit --amend
@@ -113,6 +113,7 @@ jobs:
113113
type=semver,pattern={{major}}.{{minor}},value=${{ needs.release.outputs.RELEASE_TAG }}
114114
type=semver,pattern={{major}},value=${{ needs.release.outputs.RELEASE_TAG }}
115115
latest
116+
dev
116117
117118
- name: Login to GitHub Container Registry
118119
uses: docker/login-action@v3

docs/content/1.getting-started/1.index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ variant: subtle
5858
---
5959
::
6060

61-
#### `CLEANUP_OLDER_THAN_DAYS`
61+
#### `CACHE_CLEANUP_OLDER_THAN_DAYS`
6262

6363
- Default: `90`
6464

install/kubernetes/github-actions-cache-server/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ version: 0.3.0
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: '7.0.0'
24+
appVersion: '7.0.1'

lib/storage/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export async function initializeStorage() {
271271
.catch(() => {
272272
// noop
273273
})
274-
await db.deleteFrom('uploads').where('id', '=', upload.id)
274+
await db.deleteFrom('uploads').where('id', '=', upload.id).execute()
275275
}
276276
},
277277
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "github-actions-cache-server",
33
"type": "module",
4-
"version": "7.0.0",
4+
"version": "7.0.1",
55
"private": true,
66
"engines": {
77
"node": "22",

0 commit comments

Comments
 (0)