Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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