Skip to content

Commit

Permalink
fix:repoPivate
Browse files Browse the repository at this point in the history
  • Loading branch information
moshdev2213 committed Sep 9, 2024
1 parent b514cdf commit 28012cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ jobs:
echo '🔧 **Build Status**: The Docker image has been successfully built and pushed.' >> $GITHUB_STEP_SUMMARY
echo '' >> $GITHUB_STEP_SUMMARY
echo '🛠️ **Build Context**: .' >> $GITHUB_STEP_SUMMARY
echo '📦 **Image Tag**: ${{ secrets.DOCKERHUB_USERNAME }}/apekade_admin:latest' >> $GITHUB_STEP_SUMMARY
echo '📦 **Image Tag**: ${{ secrets.DOCKERHUB_USERNAME }}/apekade_server:latest' >> $GITHUB_STEP_SUMMARY
echo '' >> $GITHUB_STEP_SUMMARY
echo '🎉 **Thanks for using GitHub Actions!**' >> $GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
using Microsoft.AspNetCore.Mvc;

namespace apekade.Controllers;

[Route("api/[controller]")]
[ApiController]
// [Authorize]
Expand Down
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
app.MapGet("/",()=> new ApiRes<object>{
Status = "Success",
Code = 200,
Data = new { Message = "Server Online" }
Data = new { Message = "Server_Online" }
});

app.Run();

0 comments on commit 28012cb

Please sign in to comment.