Skip to content

Commit

Permalink
Update graalvm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobaccan authored Nov 20, 2023
1 parent 4ab9c6a commit 153252d
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,20 @@ jobs:
shell: bash
run: |
r=$(date "+%Y%m%d-%H%M%S")
echo "::set-output name=RELEASE_BODY::$r"
#echo "::set-output name=RELEASE_BODY::$r"
echo "RELEASE_BODY=$r" >> $GITHUB_OUTPUT
cd target
ls
zip html2pop3.zip html2pop3.exe *.dll
- name: Upload Windows Binaries to Release
if: ${{ matrix.os == 'windows-latest' }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: release/windows/${{ steps.read_release_win.outputs.RELEASE_BODY }}
file: target/*.*
file_glob: true
asset_name: HTML2POP3.exe
file: target/html2pop3.zip
asset_name: html2pop3-win32.zip
body: |
Rilascio Windows del ${{ steps.read_release_win.outputs.RELEASE_BODY }}
Expand All @@ -107,7 +109,8 @@ jobs:
shell: bash
run: |
r=$(date "+%Y%m%d-%H%M%S")
echo "::set-output name=RELEASE_BODY::$r"
#echo "::set-output name=RELEASE_BODY::$r"
echo "RELEASE_BODY=$r" >> $GITHUB_OUTPUT
- name: Upload Linux Binaries to Release
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand All @@ -126,7 +129,9 @@ jobs:
shell: bash
run: |
r=$(date "+%Y%m%d-%H%M%S")
echo "::set-output name=RELEASE_BODY::$r"
#echo "::set-output name=RELEASE_BODY::$r"
echo "RELEASE_BODY=$r" >> $GITHUB_OUTPUT
- name: Upload Mac Binaries to Release
if: ${{ matrix.os == 'macos-latest' }}
Expand Down

0 comments on commit 153252d

Please sign in to comment.