From 31f9adfc096164580390bfc0ac2b2cec4890e970 Mon Sep 17 00:00:00 2001 From: Matt Karl Date: Tue, 5 Mar 2024 21:43:18 -0500 Subject: [PATCH] Chore: Add upload to release (#262) --- .github/workflows/main.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c0a87d3..3fcb903 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -72,4 +72,11 @@ jobs: with: args: --acl public-read --follow-symlinks --delete --cache-control "max-age=1209600" env: - DEST_DIR: 'latest' \ No newline at end of file + DEST_DIR: 'latest' + + # Automatically attach browser files to release + - name: Upload to Release + if: github.event_name == 'release' + uses: softprops/action-gh-release@v1 + with: + files: dist/* \ No newline at end of file