Skip to content

Commit 8c4d884

Browse files
committed
debug gh actions
1 parent 0ef03aa commit 8c4d884

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Diff for: .github/workflows/release.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,22 @@ jobs:
2929
run: sbt -v clean test
3030
- name: Package core (will be uploaded to github release)
3131
shell: bash
32-
run: sbt -v core/Universal/packageBin
32+
run: sbt -v "show core/Universal/packageBin"
3333
- name: Deploy to sonatype and release to maven central
3434
shell: bash
3535
run: sbt -v ciReleaseTagNextVersion ciReleaseSonatype
3636
env:
3737
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
3838
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
3939
- name: Export ENV vars
40-
run:
40+
run: |
4141
echo "LATEST_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
42+
echo $GITHUB_ENV
43+
- name: debug stuff
44+
run: |
45+
pwd
46+
ls
47+
find . -name '*.zip'
4248
- name: Create Release
4349
uses: ncipollo/release-action@v1
4450
with:

0 commit comments

Comments
 (0)