From ab1fb88274dc6b7c6cad3ce3b991ee41569e0ac7 Mon Sep 17 00:00:00 2001 From: guusvanmeerveld Date: Wed, 27 Oct 2021 00:35:07 +0200 Subject: [PATCH] Github actions: Added artifact uploading --- .github/workflows/compile.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 066bd4d..55b56c5 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -11,13 +11,23 @@ jobs: steps: - name: Setup checkout uses: actions/checkout@v2 - - name: Setup NodeJS v12 + + - name: Setup NodeJS v15 uses: actions/setup-node@v1 with: node-version: 15 + - name: Install Dependencies run: yarn install + - name: Build for Chrome run: yarn build -t chrome + - name: Build for Firefox run: yarn build -t firefox + + - name: Upload artifacts + uses: actions/upload-artifact@v2 + with: + name: completed-builds + path: dist