diff --git a/README.md b/README.md index b1623488..28a8c118 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Basic Usage ```yaml steps: - name: Wait for Netlify Deploy - uses: probablyup/wait-for-netlify-action@3.1.2 + uses: probablyup/wait-for-netlify-action@3.1.3 id: waitForNetlifyDeploy with: site_id: 'YOUR_SITE_ID' # See Settings > Site Details > General in the Netlify UI @@ -66,7 +66,7 @@ jobs: run: npm ci - name: Wait for Netlify - uses: probablyup/wait-for-netlify-action@3.1.2 + uses: probablyup/wait-for-netlify-action@3.1.3 id: waitForDeployment with: site_id: '[your site ID here]' @@ -113,7 +113,7 @@ jobs: run: | npm run build - name: Waiting for 200 from Netlify - uses: probablyup/wait-for-netlify-action@3.1.2 + uses: probablyup/wait-for-netlify-action@3.1.3 id: waitForNetlifyDeploy with: site_id: 'YOUR_SITE_ID' # See Settings > Site Details > General in the Netlify UI diff --git a/index.js b/index.js index d74d9b6e..67da8dea 100644 --- a/index.js +++ b/index.js @@ -108,7 +108,7 @@ const run = async () => { core.setFailed('Required field `site_id` was not provided'); } - console.log(`Waiting for Netlify to create a deployment in site ${commitDeployment.name} for git SHA ${commitSha}`); + console.log(`Waiting for Netlify to create a deployment for git SHA ${commitSha}`); const commitDeployment = await waitForDeployCreation( `https://api.netlify.com/api/v1/sites/${siteId}/deploys`, commitSha, diff --git a/package.json b/package.json index b5036586..c4f4bdc3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wait-for-netlify-action", - "version": "3.1.2", + "version": "3.1.3", "description": "A GitHub action that waits for a Netlify deployment preview for the current commit being built", "main": "index.js", "scripts": {