From 1612c0ca89d9e76e83002f65f2181cf4efe6c3b3 Mon Sep 17 00:00:00 2001 From: rayangler <27821750+rayangler@users.noreply.github.com> Date: Tue, 4 Apr 2023 17:16:18 -0400 Subject: [PATCH] DOP-3613: Add built index file to CLI release (#33) --- .eslintignore | 1 + .github/workflows/release.yml | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..56ca25c4 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +cli/index.js diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a219cbb..ae202882 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,5 +69,7 @@ jobs: run: | git config user.email 'github-actions[bot]@users.noreply.github.com' git config user.name 'github-actions[bot]' + git add -f cli/index.js + git commit --no-verify -m 'Add build artifacts' git tag ${{ steps.split.outputs._2 }} git push --tags