My deployments via Github Actions have been working for some time, but I’ve gone to do a new one today and they are no longer working. I’m getting this
The relevant part of my Github Action is as follows:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build react app
uses: actions/setup-node@v3
with:
node-version: 16
- name: npm ci, build
run: npm run build-web
- name: Deploy to Netlify
run: npx netlify-cli deploy --build --prod --dir=./webclient/build
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
Has something changed? Are you aware of anything that could be causing this?