Skip to content

Commit

Permalink
Modified CI/CD build artifacts to not contain unnecessary folder stru…
Browse files Browse the repository at this point in the history
…cture
  • Loading branch information
IsaacShelton committed Aug 27, 2024
1 parent f3f10fe commit 4624778
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/remoteBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,20 +108,22 @@ jobs:
env:
LLVM_SYS_181_PREFIX: /home/linuxbrew/.linuxbrew/opt/llvm@18
zstd_DIR: /home/linuxbrew/.linuxbrew/opt/zstd
- name: Archive Build Result
- name: Archive Build Result (Windows)
if: ${{ matrix.os == 'windows-latest' }}
uses: a7ul/[email protected]
with:
command: c
files: target/x86_64-pc-windows-gnu/release/adept.exe
outPath: build-${{ matrix.os }}.tar.gz
- name: Archive Build Result
cwd: target/x86_64-pc-windows-gnu/release
files: adept.exe
outPath: ${{github.workspace}}/build-${{ matrix.os }}.tar.gz
- name: Archive Build Result (macOS / Linux)
if: ${{ matrix.os != 'windows-latest' }}
uses: a7ul/[email protected]
with:
command: c
files: target/release/adept
outPath: build-${{ matrix.os }}.tar.gz
cwd: target/release
files: adept
outPath: ${{github.workspace}}/build-${{ matrix.os }}.tar.gz
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 4624778

Please sign in to comment.