Skip to content

Commit

Permalink
Try fixing the snapshot publish step
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachorik authored Dec 1, 2024
1 parent b54a386 commit f71f3f0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ jobs:
publish:
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master'
needs: test
needs:
- test
- build
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -131,7 +133,7 @@ jobs:
- name: Download build data
uses: actions/download-artifact@v4
with:
name: build
name: dist-build
- name: Deploy Maven
run: ./gradlew -x test :btrace-dist:publish
env:
Expand All @@ -147,4 +149,4 @@ jobs:
- name: Cleanup temporary artifacts
uses: geekyeggo/delete-artifact@v5
with:
name: build
name: dist-build

0 comments on commit f71f3f0

Please sign in to comment.