Skip to content

Commit

Permalink
Update build script... again.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgiven committed Oct 16, 2024
1 parent 3d0f82e commit 6cc7d7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
build-macos:
strategy:
matrix:
runs-on: [macos-13, macos-15-arm64]
runs-on: [macos-13, macos-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4
Expand All @@ -97,8 +97,8 @@ jobs:

- name: make
run: |
gmake
mv FluxEngine.pkg FluxEngine-${{ matrix.runs-on }}.pkg
gmake -j $(nprocs)
mv FluxEngine.pkg FluxEngine-${{ runner.arch }}.pkg
- name: tag
uses: EndBug/latest-tag@latest
Expand All @@ -114,15 +114,15 @@ jobs:
token: ${{ github.token }}
tag: dev
assets: |
FluxEngine-${{ matrix.runs-on }}.pkg
FluxEngine-${{ runner.arch }}.pkg
fail-if-no-assets: false

- name: release
uses: softprops/action-gh-release@v1
with:
name: Development build ${{ env.RELEASE_DATE }}
files: |
FluxEngine-${{ matrix.runs-on }}.pkg
FluxEngine-${{ runner.arch }}.pkg
tag_name: dev
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 6cc7d7b

Please sign in to comment.