Skip to content

Commit 16448a3

Browse files
committed
fix: release artifact
1 parent 07e9ec4 commit 16448a3

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,24 @@ jobs:
6363
- name: Download artifacts
6464
uses: actions/download-artifact@v3
6565

66+
- name: Peek
67+
run: |
68+
ls -a
69+
70+
- name: Step In
71+
run: |
72+
cd ./ubuntu-latest
73+
6674
- name: Release
6775
uses: svenstaro/upload-release-action@v2
6876
with:
6977
repo_token: ${{ secrets.GITHUB_TOKEN }}
7078
file: '*.jar'
7179
tag: ${{ github.ref }}
72-
file_glob: true
80+
file_glob: true
81+
82+
# deploy:
83+
# name: deploy
84+
# if: startsWith(github.ref, 'refs/tags/')
85+
# needs: release
86+
# runs-on: ubuntu-latest

0 commit comments

Comments
 (0)