Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: hide manifest in logs #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import core from '@actions/core'
import { $, fs, cd } from 'zx'
import { $, fs, cd, fetch } from 'zx'

void async function main() {
try {
Expand Down Expand Up @@ -86,7 +86,12 @@ async function dep() {
throw new Error('Deployer binary not found. Please specify deployer-binary or deployer-version.')
}
version = version.replace(/^v/, '')
let manifest = JSON.parse((await $`curl -L https://deployer.org/manifest.json`).stdout)
const response = await fetch(`https://deployer.org/manifest.json`)
if (!response.ok) {
const body = await response.text()
throw new Error(`Manifest can be downloaded. ${response.status} ${body}`)
}
let manifest = await response.json()
let url
for (let asset of manifest) {
if (asset.version === version) {
Expand Down Expand Up @@ -124,7 +129,7 @@ async function dep() {
} catch (e) {
console.error('Invalid JSON in options')
}

let phpBin = 'php'
let phpBinArg = core.getInput('php-binary');
if (phpBinArg !== '') {
Expand Down