Skip to content

Commit

Permalink
learning GH
Browse files Browse the repository at this point in the history
  • Loading branch information
chmouel committed Jan 23, 2024
1 parent eaf337b commit 10a132b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/releaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Extract crate information
id: crate_metadata
run: |
echo "name=snazy" | tee -a $GITHUB_OUTPUT
cargo metadata --no-deps --format-version 1 | jq -r '"name=" + .packages[0].name' | tee -a $GITHUB_OUTPUT
cargo metadata --no-deps --format-version 1 | jq -r '"version=" + .packages[0].version' | tee -a $GITHUB_OUTPUT
cargo metadata --no-deps --format-version 1 | jq -r '"maintainer=" + .packages[0].authors[0]' | tee -a $GITHUB_OUTPUT
cargo metadata --no-deps --format-version 1 | jq -r '"homepage=" + .packages[0].homepage' | tee -a $GITHUB_OUTPUT
Expand All @@ -53,7 +53,7 @@ jobs:

build:
name: ${{ matrix.job.os }} (${{ matrix.job.target }})
needs: check
needs: [check, crate_metadata]
env:
BUILD_CMD: cargo
EXTENSION: ""
Expand Down

0 comments on commit 10a132b

Please sign in to comment.