Update bitrise app id

This commit is contained in:
Mikołaj Pich 2020-02-03 22:22:18 +01:00
parent f30e2b8839
commit c1003c0543
No known key found for this signature in database
GPG key ID: F62B26E36D4C4BAA

View file

@ -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,