Skip to content

Commit

Permalink
chore: test mac
Browse files Browse the repository at this point in the history
  • Loading branch information
hexf00 committed Jan 14, 2025
1 parent 113e927 commit 9f13114
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [windows-latest, macos-latest]
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -243,25 +243,25 @@ jobs:
accessKeySecret: ${{secrets.S3_ACCESS_KEY_SECRET}}
timeout: 1200s

- name: Create Release
uses: softprops/action-gh-release@v2
with:
name: Release ${{ steps.set_version.outputs.version }}
draft: false
prerelease: ${{ steps.version_type.outputs.is_stable == 'false' }}
tag_name: ${{ steps.set_version.outputs.version }}
files: |
app/out/make/**/*.dmg
app/out/make/**/*.zip
app/out/make/**/*.exe
app/out/make/**/*.AppImage
app/out/make/**/*.yml
# - name: Create Release
# uses: softprops/action-gh-release@v2
# with:
# name: Release ${{ steps.set_version.outputs.version }}
# draft: false
# prerelease: ${{ steps.version_type.outputs.is_stable == 'false' }}
# tag_name: ${{ steps.set_version.outputs.version }}
# files: |
# app/out/make/**/*.dmg
# app/out/make/**/*.zip
# app/out/make/**/*.exe
# app/out/make/**/*.AppImage
# app/out/make/**/*.yml

body: |
${{ !steps.version_type.outputs.is_stable && 'This is an automated nightly release for testing purposes.' || '' }}
Version: ${{ steps.set_version.outputs.version }}
Version Info:
- is_stable: ${{ steps.version_type.outputs.is_stable }}
- is_dev: ${{ steps.version_type.outputs.is_dev }}
# body: |
# ${{ !steps.version_type.outputs.is_stable && 'This is an automated nightly release for testing purposes.' || '' }}
# Version: ${{ steps.set_version.outputs.version }}
# Version Info:
# - is_stable: ${{ steps.version_type.outputs.is_stable }}
# - is_dev: ${{ steps.version_type.outputs.is_dev }}

${{ !steps.version_type.outputs.is_stable && '**Warning:** This build may be unstable and is not recommended for production use.' || '' }}
# ${{ !steps.version_type.outputs.is_stable && '**Warning:** This build may be unstable and is not recommended for production use.' || '' }}

0 comments on commit 9f13114

Please sign in to comment.