Skip to content

Commit

Permalink
Fix script names
Browse files Browse the repository at this point in the history
  • Loading branch information
danielemery committed Mar 10, 2024
1 parent 2afc7bd commit 44a5ba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('${{ github.workspace }}/.github/workflows/scripts/validate-prerelease.js');
const script = require('${{ github.workspace }}/.github/workflows/scripts/validate-release.js');
const result = await script({github, context, core}, ${{github.ref_name}});
console.log('Validation complete');
console.log(result);
Expand All @@ -49,5 +49,5 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('${{ github.workspace }}/.github/workflows/scripts/reconcile-release.js');
const script = require('${{ github.workspace }}/.github/workflows/scripts/reconcile-releases.js');
await script({github, context, core}, ${{ steps.validate_deployment.outputs.result.releaseId }});

0 comments on commit 44a5ba9

Please sign in to comment.