Skip to content

Commit

Permalink
Fix publish for CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyhedral committed Nov 14, 2024
1 parent c75d0dc commit 3031c0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Publish
env:
GOPROXY: proxy.golang.org
run: go list -m github.com/sweetrpg/common@${{ steps.get_latest_tag.outputs.tag }}
run: go list -m github.com/${{ github.repository }}@${{ steps.get_latest_tag.outputs.tag }}

notify:
needs: [tag]
Expand Down
2 changes: 2 additions & 0 deletions vo/auditable.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// VO package
package vo

import "time"

// Auditable value object.
type AuditableVO struct {
CreatedAt time.Time `bson:"created_at" json:"created_at" jsonapi:"attr,created_at"`
CreatedBy string `bson:"created_by" json:"created_by" jsonapi:"attr,created_by"`
Expand Down

0 comments on commit 3031c0d

Please sign in to comment.