From aacc52098df080e495ed0f9139281df352613af0 Mon Sep 17 00:00:00 2001 From: Leandro Facchinetti Date: Sat, 4 Sep 2021 13:36:10 +0100 Subject: [PATCH] --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8f932a7..b0c5620 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,16 +6,16 @@ jobs: os: [windows, macos, ubuntu] include: - os: windows - build: npx caxa --directory . --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/lib/index.js" --output "kill-the-newsletter--windows--${{ github.sha }}.exe" + build: npx caxa --directory . --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/distribution/index.js" --output "kill-the-newsletter--windows--${{ github.sha }}.exe" artifact: kill-the-newsletter--windows--${{ github.sha }}.exe - os: macos build: | - npx caxa --directory . --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/lib/index.js" --output "kill-the-newsletter" + npx caxa --directory . --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/distribution/index.js" --output "kill-the-newsletter" tar -czf "kill-the-newsletter--macos--${{ github.sha }}.tgz" "kill-the-newsletter" artifact: kill-the-newsletter--macos--${{ github.sha }}.tgz - os: ubuntu build: | - npx caxa --directory . --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/lib/index.js" --output "kill-the-newsletter" + npx caxa --directory . --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/distribution/index.js" --output "kill-the-newsletter" tar -czf "kill-the-newsletter--linux--${{ github.sha }}.tgz" "kill-the-newsletter" artifact: kill-the-newsletter--linux--${{ github.sha }}.tgz runs-on: ${{ matrix.os }}-latest