Skip to content

Commit

Permalink
Check whether we can automatically create windows DLLs
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Jan 5, 2024
1 parent 840319a commit b6f2757
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["7.3", "7.4", "8.0", "8.1", "8.2"]
php: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
arch: [x86, x64]
ts: [nts, ts]
experimental: [false]
Expand Down Expand Up @@ -88,3 +88,10 @@ jobs:
with:
name: ${{env.ARTIFACT_NAME}}
path: ${{env.ARTIFACT}}

- name: Publish Binaries to Release
if: ${{ startsWith(github.ref, 'refs/tags') }}
uses: svenstaro/upload-release-action@v2
with:
asset_name: ${{env.ARTIFACT_NAME}}.dll
file: ${{env.ARTIFACT}}

0 comments on commit b6f2757

Please sign in to comment.