From 2d28688edd5517c2da7c2e38e9ebc2a2f161e8be Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 19 Nov 2021 12:54:41 +0100 Subject: [PATCH] Cleanup (#117) Co-authored-by: CrazyMax --- .github/workflows/ci.yml | 8 ++++++++ dist/index.js | 2 +- src/main.ts | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fbada9..0602f60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,14 @@ on: - 'releases/v*' jobs: + gpg: + runs-on: ubuntu-latest + steps: + - + name: GPG conf + run: | + cat ~/.gnupg/gpg.conf || true + armored: runs-on: ${{ matrix.os }} strategy: diff --git a/dist/index.js b/dist/index.js index 50f7ea9..47e0f0e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -391,7 +391,7 @@ function run() { try { let inputs = yield context.getInputs(); if (inputs.workdir && inputs.workdir !== '.') { - core.info(`📂 Using ${inputs.workdir} as working directory...`); + core.info(`Using ${inputs.workdir} as working directory...`); process.chdir(inputs.workdir); } const version = yield gpg.getVersion(); diff --git a/src/main.ts b/src/main.ts index 4ecf971..283186d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -10,7 +10,7 @@ async function run(): Promise { let inputs: context.Inputs = await context.getInputs(); if (inputs.workdir && inputs.workdir !== '.') { - core.info(`📂 Using ${inputs.workdir} as working directory...`); + core.info(`Using ${inputs.workdir} as working directory...`); process.chdir(inputs.workdir); }