Update bitrise app id
This commit is contained in:
parent
f30e2b8839
commit
c1003c0543
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@
|
||||||
},
|
},
|
||||||
asyncComputed: {
|
asyncComputed: {
|
||||||
async master() {
|
async master() {
|
||||||
const redirectorUrl = 'https://bitrise-redirector.herokuapp.com/v0.1/apps/f841f20d8f8b1dc8/builds/develop/artifacts/0/info';
|
const redirectorUrl = 'https://bitrise-redirector.herokuapp.com/v0.1/apps/daeff1893f3c8128/builds/develop/artifacts/0/info';
|
||||||
const build = await this.$http.get(redirectorUrl);
|
const build = await this.$http.get(redirectorUrl);
|
||||||
return {
|
return {
|
||||||
released: build.body.finished_at,
|
released: build.body.finished_at,
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
async versions() {
|
async versions() {
|
||||||
const response = await this.$http.get('https://api.github.com/repos/wulkanowy/wulkanowy/pulls?state=open');
|
const response = await this.$http.get('https://api.github.com/repos/wulkanowy/wulkanowy/pulls?state=open');
|
||||||
return (await Promise.all(response.body.map(async (release) => {
|
return (await Promise.all(response.body.map(async (release) => {
|
||||||
const redirectorUrl = `https://bitrise-redirector.herokuapp.com/v0.1/apps/f841f20d8f8b1dc8/builds/${release.head.ref}/artifacts/0/info`;
|
const redirectorUrl = `https://bitrise-redirector.herokuapp.com/v0.1/apps/daeff1893f3c8128/builds/${release.head.ref}/artifacts/0/info`;
|
||||||
const build = await this.$http.get(redirectorUrl).catch((error) => error);
|
const build = await this.$http.get(redirectorUrl).catch((error) => error);
|
||||||
return {
|
return {
|
||||||
title: release.title,
|
title: release.title,
|
||||||
|
|
Loading…
Reference in a new issue