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 +