Skip to content

Commit 17764e0

Browse files
committed
Fix variables
1 parent 26f17c6 commit 17764e0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/package.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
outputs:
17-
package-version: ${{ steps.manifest.outputs.package-version }}
18-
build-date: ${{ steps.manifest.outputs.build-date }}
17+
package-version: ${{ steps.version.outputs.package-version }}
18+
build-date: ${{ steps.version.outputs.build-date }}
19+
git-hash: ${{ steps.version.outputs.git-hash }}
1920

2021
steps:
2122
- name: "⬇ Checkout"
@@ -76,10 +77,10 @@ jobs:
7677

7778
- name: "📝 Prepare release"
7879
run: |
79-
package_version="${{ needs.package.outputs.package-version }}"
8080
revision="${{ github.event.inputs.debian_revision }}"
81+
package_version="${{ needs.package.outputs.package-version }}"
8182
build_date="${{ needs.package.outputs.build-date }}"
82-
hash="${{ needs.build.outputs.git-hash }}"
83+
hash="${{ needs.package.outputs.git-hash }}"
8384
8485
RELEASE_NAME="camera-streamer-stack $package_version"
8586
echo "RELEASE_NAME=$RELEASE_NAME" >> $GITHUB_ENV

0 commit comments

Comments
 (0)