Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPolo committed May 17, 2024
1 parent 39e2234 commit d465f8e
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/mkreleaselog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,20 @@ jobs:
- uses: actions/setup-go@v5
- name: Copy files to GOPATH
run: |
mkdir -p ~/go/github.com/libp2p
mkdir -p ~/go/src/github.com/libp2p
cd ..
cp -r go-libp2p ~/go/github.com/libp2p
cp -r go-libp2p ~/go/src/github.com/libp2p
- name: Install dependencies
run: |
cd ~/go/github.com/libp2p/go-libp2p
cd ~/go/src/github.com/libp2p/go-libp2p
go mod download
- name: Run mkreleaselog script
shell: zsh {0}
run: |
cd ~/go/github.com/libp2p/go-libp2p
./scripts/mkreleaselog
cd ~/go/src/github.com/libp2p/go-libp2p
./scripts/mkreleaselog > release.log
- name: Upload release log
uses: actions/upload-artifact@v4
with:
name: release.log
path: release.log

0 comments on commit d465f8e

Please sign in to comment.