Skip to content

Commit

Permalink
Fix CC workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonzlin committed Dec 24, 2023
1 parent cef732a commit 0b1a18e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc
cargo build --release --target ${{ matrix.target }}
# upload-artifact does not rename the file, so when we download if we don't rename all files will have the same name.
mv -v ../target/release/minhtml${{ matrix.EXT }} ${{ steps.file.outputs.FILE }}
mv -v ../target/${{ matrix.target }}/release/minhtml${{ matrix.EXT }} ${{ steps.file.outputs.FILE }}
- name: Upload
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc
cargo build --release --target ${{ matrix.target }}
# upload-artifact does not rename the file, so when we download if we don't rename all files will have the same name.
mv -v ../target/release/${{ matrix.buildfile }} ${{ matrix.resfile }}
mv -v ../target/${{ matrix.target }}/release/${{ matrix.buildfile }} ${{ matrix.resfile }}
- name: Upload built library
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit 0b1a18e

Please sign in to comment.