Skip to content

Commit

Permalink
Use min package name in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRuiz7 committed Mar 25, 2024
1 parent 063b435 commit c2c52cc
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,17 @@ jobs:
run: |
sudo bash scripts/provision.sh
- name: Run `baptizer.sh`
run: |
name=$(bash scripts/baptizer.sh -m \
-a ${{ matrix.architecture }} \
-d ${{ matrix.distribution }} \
-r ${{ inputs.revision }} \
${{ inputs.is_release && '-x' || '' }} \
)
echo "name=$name" >> $GITHUB_OUTPUT
id: min_package

- name: Run `baptizer.sh`
run: |
name=$(bash scripts/baptizer.sh \
Expand All @@ -122,7 +133,7 @@ jobs:
bash scripts/build.sh \
-a ${{ matrix.architecture }} \
-d ${{ matrix.distribution }} \
-n ${{ steps.package.outputs.name }}
-n ${{ steps.min_package.outputs.name }}
- name: Run `assemble.sh`
run: |
Expand Down

0 comments on commit c2c52cc

Please sign in to comment.