mirror of
https://github.com/shiroyashik/sculptor.git
synced 2025-12-06 13:01:12 +03:00
minor refactor
- simplify CSV reading logic - add more comments - rework the packaging script - remove debug information for git tags
This commit is contained in:
parent
e21cbd1f63
commit
cbb31f2183
6 changed files with 87 additions and 31 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -7,12 +7,16 @@ on:
|
|||
- src
|
||||
- Cargo*
|
||||
- Dockerfile
|
||||
# this file
|
||||
- .github/workflows/ci.yml
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
paths:
|
||||
- src
|
||||
- Cargo*
|
||||
- Dockerfile
|
||||
# this file
|
||||
- .github/workflows/ci.yml
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
@ -28,6 +32,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
env:
|
||||
OUTPUT_DIR: target/output
|
||||
# in case we wanted to test multiple toolchains:
|
||||
strategy:
|
||||
matrix:
|
||||
toolchain:
|
||||
|
|
@ -63,7 +68,8 @@ jobs:
|
|||
targets: ${{ env.CARGO_BUILD_TARGETS }}
|
||||
|
||||
- name: Package the artifacts
|
||||
run: ./.github/scripts/package-artifacts.sh
|
||||
run: mkdir -p "$OUTPUT_DIR" && \
|
||||
./.github/scripts/package-artifacts.sh
|
||||
|
||||
- name: Upload the artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue