summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-02 21:40:21 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-02 21:40:21 -0700
commitb194a66f392fe67a9a8d0dbd58fb4d8055ca7261 (patch)
treeefbb06beeb2062942b4633e74f4c3e97aac2c6cc /.github
parent9e14a2984d0c83c944cd76270fad8d1debc6b042 (diff)
downloadsncontinue-b194a66f392fe67a9a8d0dbd58fb4d8055ca7261.tar.gz
sncontinue-b194a66f392fe67a9a8d0dbd58fb4d8055ca7261.tar.bz2
sncontinue-b194a66f392fe67a9a8d0dbd58fb4d8055ca7261.zip
don't include binaries with extension
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index 46b50ef3..8610f363 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -63,19 +63,19 @@ jobs:
uses: actions/download-artifact@v2
with:
name: Linux Build
- path: extension/server/exe/linux
+ path: exe/linux
- name: Download macOS build
uses: actions/download-artifact@v2
with:
name: macOS Build
- path: extension/server/exe/mac
+ path: exe/mac
- name: Download Windows build
uses: actions/download-artifact@v2
with:
name: Windows Build
- path: extension/server/exe/windows
+ path: exe/windows
- name: Use Node.js 19.0.0
uses: actions/setup-node@v3
@@ -148,4 +148,4 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: "us-west-1"
- SOURCE_DIR: "extension/server/exe"
+ SOURCE_DIR: "exe"