Skip to content

Commit

Permalink
fix ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
d8vjork committed Mar 13, 2024
1 parent 05983f8 commit 623a565
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
uses: softprops/action-gh-release@v2
with:
body: ${{ steps.query-release-info.outputs.release-notes }}
make_latest: ${{ $GITHUB_REF_NAME == 'main' && true || false }}
make_latest: ${{ github.ref_name == 'main' && true || false }}
# prerelease: true
# files: '*.vsix'
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ jobs:
matrix:
os: [ ubuntu-latest ]
php: [ 8.1, 8.2, 8.3 ]
stability: [prefer-lowest, prefer-stable]
stability: [ prefer-stable ]
laravel: [ 10.*, 11.* ]
include:
- laravel: 10.*
testbench: 8.*

- laravel: 11.*
testbench: 9.*
exclude:
- php: 8.1
laravel: 11.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down

0 comments on commit 623a565

Please sign in to comment.