Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Suggested answer

azure deploy github action - GOLANG

(0) ShareShare
ReportReport
Posted on by 5

I'm working on a project and I need to deploy this project to Azure7

I deploy the application using github actions and azure's web services, the deply is successfully performed, but when trying to make a request through the postman using the url that is generated in azure, I get the following error:

The specified CGI application encountered an error and the server terminated the process.

my code is made using Golang programming language.

here are the snippets of my code:

golang:

func main() {
    dbload := Init()
    h := OpenDB(dbload)

    /*port := os.Getenv("HTTP_PLATFORM_PORT")
    if port == "" {
        port = "8080"
    }*/

    router := gin.Default()
    router.POST("/webhook/sendgrid", h.sendgridWeb)
    //router.GET("/ping", ping)
    port := os.Getenv("HTTP_PLATFORM_PORT")

    // default back to 8080 for local dev
    if port == "" {
        port = "8080"
    }

    router.Run("127.0.0.1:" + port)

}



build - web.config:


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
        </handlers>
        <httpPlatform processPath="D:\home\site\wwwroot\go-app.exe" startupTimeLimit="60">
        </httpPlatform>
    </system.webServer>
</configuration>


.github - workflows- go.yml


name: Build Go app and push to Azure

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:

  build:
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@v3

    - name: Set up Go
      uses: actions/setup-go@v3
      with:
        go-version: 1.19.4



    - name: Build
      run: go build -o build/go-app.exe -v

    - name: Test
      run: go test
      
    - name: Deploy to Azure
      uses: Azure/webapps-deploy@v2
      with:
        app-name: golang-webhook
        package: build/
        publish-profile: ${{ secrets.azureWebAppPublishProfile }}


my code only has the post method.

the deploy succeeds, but when performing a post request via postman using the link that azure provided me in the web-app , I get the error 502 (bad geteway)-

The specified CGI application encountered an error and the server terminated the process.

  • Suggested answer
    DAnny3211 Profile Picture
    9,276 Moderator on at
    RE: azure deploy github action - GOLANG

    hi

    look this

    learn.microsoft.com/.../error-the-specified-cgi-application-encountered-an.html

    DAniele

  • Martin Dráb Profile Picture
    232,866 Most Valuable Professional on at
    RE: azure deploy github action - GOLANG

    Unfortunately, you're in a wrong forum. This whole site is about Microsoft business applications and this particular forum is about an ERP system called Microsoft Dynamics AX.

    You'll need to find another forum. Try Microsoft Q&A or Stack Overflow, to name just a few.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 294,097 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,866 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Product updates

Dynamics 365 release plans