Skip to content

Commit

Permalink
Fix go-webapi template
Browse files Browse the repository at this point in the history
  • Loading branch information
baksetercx committed Jan 17, 2025
1 parent 7520794 commit 85e2470
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cli-create-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create & build with 3lv
name: Create & build

on:
pull_request:
Expand All @@ -12,7 +12,7 @@ on:

jobs:
create-build:
name: ''
name: Create & build
runs-on: elvia-runner
env:
PROJECT_NAME: 'my-cool-project'
Expand All @@ -37,8 +37,8 @@ jobs:

- name: Build project
run: |
# Convert to pascal case for .NET
if [[ '${{ matrix.template }}' == "dotnet"* ]]; then
# Convert to pascal case for .NET
cd $(echo "$PROJECT_NAME" | sed -r 's/(^|-)(.)/\U\2/g')
else
cd "$PROJECT_NAME"
Expand Down
4 changes: 2 additions & 2 deletions go-webapi/{{cookiecutter.application_name}}/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module demo-api-go
module {{cookiecutter.application_name}}

go 1.22.6
go 1.23

require github.com/gin-gonic/gin v1.10.0

Expand Down

0 comments on commit 85e2470

Please sign in to comment.