Skip to content

Commit

Permalink
try to release a new module
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Sep 18, 2024
1 parent 74cd095 commit 7feb484
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-go-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
VERSION=$(echo "$TAG_REF" | cut -d'/' -f2)
# Find the latest tag for the same package that is not the current tag
LAST_TAG=$(git describe --abbrev=0 --match "$PACKAGE_NAME/v*" --tags $(git rev-list --tags --skip=1 --max-count=1))
LAST_TAG=$(git describe --abbrev=0 --always --match "$PACKAGE_NAME/v*" --tags $(git rev-list --tags --skip=1 --max-count=1))
echo "Last tag: ${LAST_TAG}"
# If no previous tag is found, use the initial commit as the reference
Expand Down
Empty file.
7 changes: 7 additions & 0 deletions dummy-module/.changeset/v0.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Dummy modules is live!

Features:

- 1
- 2
- 3
7 changes: 7 additions & 0 deletions dummy-module/cmd/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "fmt"

func main() {
fmt.Println("Hello!")
}
5 changes: 5 additions & 0 deletions dummy-module/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module github.com/smartcontractkit/chainlink-testing-framework/dummy-module

go 1.22.5

retract [v1.999.0-test-release, v1.999.999-test-release]
Empty file added dummy-module/go.sum
Empty file.
2 changes: 0 additions & 2 deletions tools/breakingchanges/go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=

0 comments on commit 7feb484

Please sign in to comment.