Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cbd7289
Upgrade database, add IsPaste property for Metadata, disallow pastes …
Forceu Mar 27, 2026
a6d7d12
Merge branch 'master' into featPasteSupport
Forceu Mar 27, 2026
f948ae3
Add code generation for http.Request and JSON, add API endpoint /file…
Forceu Mar 28, 2026
ed0e9d6
Add post form support for updateApiRouting.go, working paste upload t…
Forceu Mar 28, 2026
93dcdd8
Initial UI/JS created with Claude
Forceu Mar 28, 2026
21fd5d2
Merge branch 'master' into featPasteSupport
Forceu Apr 4, 2026
6a1139a
Merge branch 'master' into featPasteSupport
Forceu Apr 9, 2026
b90515d
Merge branch 'master' into featPasteSupport
Forceu Apr 13, 2026
5cfb811
Merge branch 'master' into featPasteSupport
Forceu May 6, 2026
f456e4b
Merge branch 'master' into featPasteSupport
Forceu May 9, 2026
72f5ff8
Fixed JS adding row to paste view
Forceu May 16, 2026
b1a34ec
Formatting
Forceu May 16, 2026
1f7e115
Fix expiry not being honoured, refactoring JS
Forceu May 16, 2026
566f455
Implemented viewing support, improved UI
Forceu May 16, 2026
21b5ce1
Implement password function for pastes, refactoring
Forceu May 17, 2026
e3f8677
Merge branch 'master' into featPasteSupport
Forceu May 17, 2026
ee39f03
Better workflow
Forceu May 17, 2026
38c94c2
Fixed github action
Forceu May 17, 2026
e1a2691
Fixed workflow
Forceu May 17, 2026
27a17ee
Fixed tests, BREAKING: now defaulting to unlimited time instead of 14…
Forceu May 18, 2026
db3590c
Merge branch 'master' into featPasteSupport
Forceu May 18, 2026
8b837db
Merge branch 'master' into featPasteSupport
Forceu Aug 15, 2026
baa4e0a
Added better handling for deleting pastes with undo option, ctrl+ente…
Forceu Aug 15, 2026
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
6 changes: 3 additions & 3 deletions .github/workflows/publish-dev-custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
--push \
--platform "$platform" \
--build-arg BINARY_NAME="$binary" \
--tag "f0rc3/gokapi:tmp-${binary}" \
--tag "f0rc3/gokapi:tmp-${{ github.event.inputs.tagname }}-${binary}" \
--file Dockerfile.multiarch \
.
done
Expand All @@ -95,7 +95,7 @@ jobs:
--tag f0rc3/gokapi:${{ github.event.inputs.tagname }} \
$(for platform in "${!PLATFORMS[@]}"; do
binary="${PLATFORMS[$platform]}"
echo "f0rc3/gokapi:tmp-${binary}"
echo "f0rc3/gokapi:tmp-${{ github.event.inputs.tagname }}-${binary}"
done)

# Delete intermediate tags
Expand All @@ -107,5 +107,5 @@ jobs:
for binary in "${PLATFORMS[@]}"; do
curl -s -X DELETE \
-H "Authorization: JWT ${TOKEN}" \
"https://hub.docker.com/v2/repositories/f0rc3/gokapi/tags/tmp-${binary}/"
"https://hub.docker.com/v2/repositories/f0rc3/gokapi/tags/tmp-${{ github.event.inputs.tagname }}-${binary}/"
done
2 changes: 1 addition & 1 deletion .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Core Docker - Custom Dev
name: Build Core Docker - Dev Release

on:
workflow_dispatch:
Expand Down
Loading
Loading