Skip to content

Commit 21efa38

Browse files
committed
Get github actions to work
1 parent f4f105e commit 21efa38

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
name: "Release"
1111
runs-on: "ubuntu-latest"
1212
steps:
13-
- uses: montudor/action-zip@v1
14-
with:
15-
args: zip -qq -r release.zip src java.bat jenv.bat
16-
- uses: "marvinpinto/action-automatic-releases@latest"
13+
- name: "Zip files"
14+
run: "zip release.zip src/ jenv.bat java.bat"
15+
- name: "Create Release"
16+
uses: "marvinpinto/action-automatic-releases@latest"
1717
with:
1818
repo_token: "${{ secrets.GITHUB_TOKEN }}"
1919
prerelease: false

0 commit comments

Comments
 (0)