Skip to content

Commit

Permalink
set-env deprecated, new way to set env vars in Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mendhak committed Apr 21, 2022
1 parent 4d8f3c3 commit 8f99686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Set environment variable so that deb build steps can pick it up
- name: Set version environment
run: source version.sh && echo "version=$version" >> $GITHUB_ENV
run: echo "version=${{ steps.version_setter.outputs.version }}" >> $GITHUB_ENV

- name: Install dependencies
run: sudo apt-get -y install python3-stdeb fakeroot python-all dh-python lintian
Expand Down

0 comments on commit 8f99686

Please sign in to comment.