From 80a29c7fdc412c085d2f091721966360b5a316fa Mon Sep 17 00:00:00 2001 From: ochorocho Date: Wed, 7 Sep 2022 22:50:20 +0200 Subject: [PATCH] [TASK] Upload release files to Github assets --- .github/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 21a8dca..100d96f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,6 +2,8 @@ name: tests on: push: + tags: + - "v*.*.*" pull_request: schedule: - cron: "0 4 * * *" @@ -31,3 +33,12 @@ jobs: run: | yarn build:v2 yarn build:v3 + + - name: Upload release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + web-ext-artifacts/typo3_tdk_gitpod-v2.zip + web-ext-artifacts/typo3_tdk_gitpod-v3.zip +