Skip to content

Commit

Permalink
Add --no-experimental-fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian committed Jul 11, 2024
1 parent 1caf6ea commit 3209f97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
if: github.ref != 'refs/heads/staging' && github.ref != 'refs/heads/prod'
run: ng build
env:
NODE_OPTIONS: --openssl-legacy-provider
NODE_OPTIONS: --openssl-legacy-provider --no-experimental-fetch

- name: Build for staging
if: github.ref == 'refs/heads/staging'
run: ng build --configuration=staging
env:
NODE_OPTIONS: --openssl-legacy-provider
NODE_OPTIONS: --openssl-legacy-provider --no-experimental-fetch
- name: Configure AWS credentials for staging
if: github.ref == 'refs/heads/staging'
uses: aws-actions/configure-aws-credentials@v1
Expand All @@ -53,7 +53,7 @@ jobs:
if: github.ref == 'refs/heads/prod'
run: ng build --configuration=prod
env:
NODE_OPTIONS: --openssl-legacy-provider
NODE_OPTIONS: --openssl-legacy-provider --no-experimental-fetch
- name: Configure AWS credentials for production
if: github.ref == 'refs/heads/prod'
uses: aws-actions/configure-aws-credentials@v1
Expand Down

0 comments on commit 3209f97

Please sign in to comment.