Skip to content

Commit

Permalink
Test if cargo clean unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
dangeredwolf committed Aug 28, 2023
1 parent c311069 commit d9d6079
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ jobs:
target: ${{ matrix.target }}
default: true

- name: Cargo Clean
run: cargo clean


- name: Install dependencies for cross-compilation
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: |
Expand All @@ -61,9 +57,14 @@ jobs:
command: build
args: --release --target ${{ matrix.target }}


- name: Upload Release Asset
uses: actions/upload-artifact@v3
with:
name: mosaic-${{ matrix.target }}
path: target/${{ matrix.target }}/release/mosaic${{ matrix.target == 'x86_64-pc-windows-gnu' && '.exe' || '' }}
if-no-files-found: error

# - name: Set up Docker Buildx
# if: contains(matrix.target, 'linux')
# uses: docker/setup-buildx-action@v2

0 comments on commit d9d6079

Please sign in to comment.