Skip to content

Commit

Permalink
fix: CD workflow rename algorun->nodekit
Browse files Browse the repository at this point in the history
  • Loading branch information
Tasos Bitsios committed Jan 7, 2025
1 parent 29a6dc7 commit 3d92313
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
GOOS: ${{matrix.goos}}
GOARCH: ${{matrix.goarch}}
CGO_ENABLED: 0
run: go build -o bin/algorun-${{matrix.goarch}}-${{matrix.goos}} *.go
run: go build -o bin/nodekit-${{matrix.goarch}}-${{matrix.goos}} *.go
- uses: actions/upload-artifact@master
with:
name: algorun-${{matrix.goarch}}-${{matrix.goos}}
path: bin/algorun-${{matrix.goarch}}-${{matrix.goos}}
name: nodekit-${{matrix.goarch}}-${{matrix.goos}}
path: bin/nodekit-${{matrix.goarch}}-${{matrix.goos}}
release:
needs:
- build
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: algorun*
pattern: nodekit*
path: ./bin
- uses: go-semantic-release/action@v1
name: release
Expand All @@ -47,4 +47,4 @@ jobs:
- name: Upload Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload v${{steps.semver.outputs.version}} bin/**/*
run: gh release upload v${{steps.semver.outputs.version}} bin/**/*

0 comments on commit 3d92313

Please sign in to comment.