Skip to content

Commit

Permalink
release v0.8.0 with fixes from @1ma
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Jul 11, 2024
1 parent e6266f1 commit feeff0b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
make-release:
runs-on: ubuntu-latest
steps:
- uses: actions/create-release@latest
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -29,13 +29,13 @@ jobs:
env:
CGO_ENABLED: 0
steps:
- uses: actions/checkout@latest
- uses: wangyoucao577/go-release-action@latest
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "1.22"
build_flags: -trimpath
ldflags: -d -s -w
ldflags: -s -w
overwrite: true
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,8 @@ apt install lightningd
mkdir -p ~/.lightning/plugins
echo 'disable-plugin=bcli' >> .lightning/config
cd ~/.lightning/plugins
wget https://github.com/nbd-wtf/trustedcoin/releases/download/v0.7.0/trustedcoin-v0.7.0-linux-amd64.tar.gz
tar -xvf trustedcoin-v0.7.0-linux-amd64.tar.gz
wget https://github.com/nbd-wtf/trustedcoin/releases/download/v0.8.0/trustedcoin-v0.8.0-linux-amd64.tar.gz
tar -xvf trustedcoin-v0.8.0-linux-amd64.tar.gz
cd
lightningd
```

## How to build

```
go build
```
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/fiatjaf/lightningd-gjson-rpc/plugin"
)

const version = "0.7.1"
const version = "0.8.0"

var (
network string
Expand Down

0 comments on commit feeff0b

Please sign in to comment.