Skip to content

Commit

Permalink
fix(ci): fix github api response parsing in release workflow
Browse files Browse the repository at this point in the history
ee7f3376247e6e3e15a88bcb46b2274d2bfc5be1
  • Loading branch information
kabachook committed Apr 22, 2024
1 parent cdf7fe1 commit 662959d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Setup CloudQuery
uses: cloudquery/setup-cloudquery@v3
with:
version: v5.5.6
version: v5.12.2

- name: Parse and validate semver tag
id: semver-tag
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
repo: context.repo.repo,
tag: context.ref.replace('refs/tags/', ''),
});
message = data;
message = data.body;
}
fs.writeFileSync(FILENAME, message);
return `@${FILENAME}`; // @ is for cloudquery cli to read from file
Expand Down

0 comments on commit 662959d

Please sign in to comment.