Skip to content

Commit 9a8225d

Browse files
committed
build.yaml
1 parent 0cf3288 commit 9a8225d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/upload-artifact@v2
2525
with:
2626
name: beeline-latest-binary.jar
27-
path: beeline/build/libs/beeline-*-binary.jar
27+
path: build/libs/beeline-*-binary.jar
2828
if-no-files-found: error
2929

3030
#- run: ./gradlew uploadArchives
@@ -43,7 +43,7 @@ jobs:
4343
uses: softprops/action-gh-release@v1
4444
with:
4545
body: ${{ steps.release_notes.outputs.release_notes }}
46-
files: beeline/build/libs/beeline-*-binary.jar
46+
files: build/libs/beeline-*-binary.jar
4747
env:
4848
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4949

@@ -55,7 +55,7 @@ jobs:
5555
- name: Set SHA
5656
id: shasum
5757
if: startsWith(github.ref, 'refs/tags/')
58-
run: echo ::set-output name=sha::"$(shasum -a 256 beeline/build/libs/beeline-*-binary.jar | awk '{printf $1}')"
58+
run: echo ::set-output name=sha::"$(shasum -a 256 build/libs/beeline-*-binary.jar | awk '{printf $1}')"
5959

6060
- name: Bump Brew
6161
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)