Skip to content

Commit d465f8e

Browse files
committed
wip
1 parent 39e2234 commit d465f8e

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/mkreleaselog.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,20 @@ jobs:
2020
- uses: actions/setup-go@v5
2121
- name: Copy files to GOPATH
2222
run: |
23-
mkdir -p ~/go/github.com/libp2p
23+
mkdir -p ~/go/src/github.com/libp2p
2424
cd ..
25-
cp -r go-libp2p ~/go/github.com/libp2p
25+
cp -r go-libp2p ~/go/src/github.com/libp2p
2626
- name: Install dependencies
2727
run: |
28-
cd ~/go/github.com/libp2p/go-libp2p
28+
cd ~/go/src/github.com/libp2p/go-libp2p
2929
go mod download
3030
- name: Run mkreleaselog script
3131
shell: zsh {0}
3232
run: |
33-
cd ~/go/github.com/libp2p/go-libp2p
34-
./scripts/mkreleaselog
33+
cd ~/go/src/github.com/libp2p/go-libp2p
34+
./scripts/mkreleaselog > release.log
35+
- name: Upload release log
36+
uses: actions/upload-artifact@v4
37+
with:
38+
name: release.log
39+
path: release.log

0 commit comments

Comments
 (0)