Skip to content

Commit

Permalink
CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
Exzap committed Aug 7, 2024
1 parent c2c230c commit fc99afb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy_experimental_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ jobs:
repo: context.repo.repo,
});
if (!releases.length) {
console.log("No releases found.");
return "No previous release found.";
}
const latestRelease = releases[0];
console.log(`Latest release found: ${latestRelease.tag_name} published at ${latestRelease.published_at}`);
const { data: commits } = await github.rest.repos.listCommits({
owner: context.repo.owner,
Expand Down

0 comments on commit fc99afb

Please sign in to comment.