From 37ae177941060a16b77048766283c1ff06c1b106 Mon Sep 17 00:00:00 2001 From: mloginov Date: Thu, 25 Jan 2024 15:41:20 +0000 Subject: [PATCH] move index.js file to dist (#2) --- .github/workflows/release.yaml | 3 ++- index.js => dist/index.js | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename index.js => dist/index.js (100%) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d3aac4a..1f6f631 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,11 +11,12 @@ jobs: uses: actions/checkout@v3 - name: build artifact + working-directory: ./dist run: tar -czvf dist.tar.gz index.js - name: upload artifact uses: AButler/upload-release-assets@v3.0 with: - files: "dist.tar.gz" + files: "dist/dist.tar.gz" repo-token: ${{ secrets.GITHUB_TOKEN }} release-tag: ${{ github.event.release.tag_name }} diff --git a/index.js b/dist/index.js similarity index 100% rename from index.js rename to dist/index.js