Skip to content

Commit

Permalink
fix: Please change package main to package handler
Browse files Browse the repository at this point in the history
  • Loading branch information
LelouchFR committed May 4, 2024
1 parent f687b09 commit 2ed8753
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v2

- name: Build api
run: go mod tidy; go build -o skill-icons main.go
run: go mod tidy; go build -o skill-icons ./api/index.go

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
Expand Down
2 changes: 1 addition & 1 deletion api/index.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package handler

import (
"fmt"
Expand Down

0 comments on commit 2ed8753

Please sign in to comment.