Skip to content

Commit

Permalink
Update abq api to cloud host (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonywok authored Jan 5, 2024
1 parent 89f90ba commit cccfb00
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6614,7 +6614,7 @@ function run() {
const os = getOs();
const arch = getArch();
const installId = getInstallId(releaseChannel);
const url = `https://abq.build/api/releases/${releaseChannel}/${os}/${arch}/abq?install_id=${installId}`;
const url = `https://cloud.rwx.com/abq/api/releases/${releaseChannel}/${os}/${arch}/abq?install_id=${installId}`;
core.debug(`Fetching ${url}`);
const abq = yield tc.downloadTool(url,
/* dest */ undefined, `Bearer ${accessToken}`);
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "setup-abq",
"version": "1.0.10",
"version": "1.0.11",
"private": true,
"description": "This action installs the abq binary.",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function run() {
const arch = getArch()
const installId = getInstallId(releaseChannel)

const url = `https://abq.build/api/releases/${releaseChannel}/${os}/${arch}/abq?install_id=${installId}`
const url = `https://cloud.rwx.com/abq/api/releases/${releaseChannel}/${os}/${arch}/abq?install_id=${installId}`

core.debug(`Fetching ${url}`)
const abq = await tc.downloadTool(
Expand Down

0 comments on commit cccfb00

Please sign in to comment.