From 0324ed6d49c5d7b7e7c81a633a96f24303ced5e1 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Tue, 1 Nov 2022 20:54:39 +0100 Subject: [PATCH] forgot to add output --- .github/workflows/trial.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trial.yml b/.github/workflows/trial.yml index 8e85622..a7398d2 100644 --- a/.github/workflows/trial.yml +++ b/.github/workflows/trial.yml @@ -10,13 +10,16 @@ on: jobs: tags: runs-on: ubuntu-latest + outputs: + matrix: ${{ steps.fetcher.outputs.matrix }} steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 18 - run: npm i - - run: node fetch.mjs + - id: fetcher + run: node fetch.mjs build: runs-on: ubuntu-latest