Skip to content

Commit

Permalink
fix: window environment declartion
Browse files Browse the repository at this point in the history
chore: remove fail-fast from strategy
  • Loading branch information
sweptsquash committed Dec 8, 2023
1 parent c7c0c3b commit 1d0aa2f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
jobs:
build:
strategy:
fail-fast: true
matrix:
include:
- os: ubuntu-latest
Expand Down Expand Up @@ -91,7 +90,7 @@ jobs:
- name: Get composer cache directory
if: matrix.os == 'windows-latest'
id: composer-cache-windows
run: echo "dir=$(composer config cache-files-dir)" >> $env:$GITHUB_OUTPUT
run: echo "dir=$(composer config cache-files-dir)" >> $env:GITHUB_OUTPUT

- name: Cache composer dependencies
if: matrix.os != 'windows-latest'
Expand Down Expand Up @@ -136,8 +135,8 @@ jobs:
- name: Windows Use YAML
if: matrix.os == 'windows-latest'
run: |
echo "SEN_VERSION=${{ steps.yaml-output.outputs.version }}" >> $env:$GITHUB_ENV
echo "SEN_PATH=${{ steps.yaml-output.outputs.path }}" >> $env:$GITHUB_ENV
echo "SEN_VERSION=${{ steps.yaml-output.outputs.version }}" >> $env:GITHUB_ENV
echo "SEN_PATH=${{ steps.yaml-output.outputs.path }}" >> $env:GITHUB_ENV
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit 1d0aa2f

Please sign in to comment.