Skip to content

Commit

Permalink
Fix variables
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Mar 29, 2023
1 parent 26f17c6 commit 17764e0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
runs-on: ubuntu-latest

outputs:
package-version: ${{ steps.manifest.outputs.package-version }}
build-date: ${{ steps.manifest.outputs.build-date }}
package-version: ${{ steps.version.outputs.package-version }}
build-date: ${{ steps.version.outputs.build-date }}
git-hash: ${{ steps.version.outputs.git-hash }}

steps:
- name: "⬇ Checkout"
Expand Down Expand Up @@ -76,10 +77,10 @@ jobs:

- name: "📝 Prepare release"
run: |
package_version="${{ needs.package.outputs.package-version }}"
revision="${{ github.event.inputs.debian_revision }}"
package_version="${{ needs.package.outputs.package-version }}"
build_date="${{ needs.package.outputs.build-date }}"
hash="${{ needs.build.outputs.git-hash }}"
hash="${{ needs.package.outputs.git-hash }}"
RELEASE_NAME="camera-streamer-stack $package_version"
echo "RELEASE_NAME=$RELEASE_NAME" >> $GITHUB_ENV
Expand Down

0 comments on commit 17764e0

Please sign in to comment.