Skip to content

Commit

Permalink
bring back windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Haim Yadid committed Dec 7, 2022
1 parent 47b5fdd commit 837718b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
VERSION: ${{ steps.vars.outputs.VERSION }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Version
id: vars
Expand All @@ -25,12 +25,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macOS-latest]
#, windows-latest ]
os: [ ubuntu-latest, macOS-latest, windows-latest]
#,
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Graal toolchain
uses: graalvm/setup-graalvm@v1
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
JRELEASER_PLATFORM_OVERRIDE: ${{ matrix.job.jreleaser_platform }}

- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
retention-days: 1
name: artifacts
Expand All @@ -70,7 +70,7 @@ jobs:
- name: JReleaser output
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
retention-days: 1
name: jreleaser-${{ matrix.os }}
Expand All @@ -87,12 +87,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3

- name: Release
uses: jreleaser/release-action@v2
Expand All @@ -104,7 +104,7 @@ jobs:

- name: JReleaser output
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
retention-days: 1
name: jreleaser-release
Expand Down
4 changes: 2 additions & 2 deletions jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ distributions:
# platform: "osx-aarch_64"
- path: "{{artifactsDir}}/mjprof-{{projectVersion}}-linux-x86_64.zip"
platform: "linux-x86_64"
# - path: "{{artifactsDir}}/mjprof-{{projectVersion}}-windows-x86_64.zip"
# platform: "windows-x86_64"
- path: "{{artifactsDir}}/mjprof-{{projectVersion}}-windows-x86_64.zip"
platform: "windows-x86_64"

0 comments on commit 837718b

Please sign in to comment.