Skip to content

Commit

Permalink
Merge pull request #1146 from Dokploy/canary
Browse files Browse the repository at this point in the history
🚀 Release v0.17.4
  • Loading branch information
Siumauricio authored Jan 19, 2025
2 parents 9298d6c + b166cd5 commit e227510
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dokploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ jobs:
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ steps.get_version.outputs.version }}
name: Release v${{ steps.get_version.outputs.version }}
tag_name: ${{ steps.get_version.outputs.version }}
name: ${{ steps.get_version.outputs.version }}
generate_release_notes: true
draft: false
prerelease: false
Expand Down
11 changes: 11 additions & 0 deletions apps/dokploy/components/layouts/user-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,17 @@ export const UserNav = () => {
Servers
</DropdownMenuItem>
)}

{data?.rol === "admin" && (
<DropdownMenuItem
className="cursor-pointer"
onClick={() => {
router.push("/dashboard/settings");
}}
>
Settings
</DropdownMenuItem>
)}
</>
)}
</DropdownMenuGroup>
Expand Down
2 changes: 1 addition & 1 deletion apps/dokploy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dokploy",
"version": "v0.17.3",
"version": "v0.17.4",
"private": true,
"license": "Apache-2.0",
"type": "module",
Expand Down

0 comments on commit e227510

Please sign in to comment.