Skip to content

Commit

Permalink
github actions debian git build name fix env assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
DaAwesomeP committed Jun 22, 2023
1 parent f903797 commit 938733c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
- name: Generate build name
shell: bash
run: |
head -n 1 debian/changelog | sed -E "s/ola \((.+)-([0-9]+)\).*/\1~git`./scripts/build_name.sh`-\2/" >> $BUILD_NAME
echo "Build name: $BUILD_NAME"
export BUILD_NAME=$(head -n 1 debian/changelog | sed -E "s/ola \((.+)-([0-9]+)\).*/\1~git`./scripts/build_name.sh`-\2/")
echo "BUILD_NAME=$BUILD_NAME`" >> $GITHUB_OUTPUT
echo "Build name: $BUILD_NAME"
id: generate-build-name
- name: Install build tools
run: apt-get -y install devscripts adduser fakeroot sudo
Expand Down

0 comments on commit 938733c

Please sign in to comment.