Skip to content

Commit

Permalink
add missing vars
Browse files Browse the repository at this point in the history
  • Loading branch information
X-sam committed Apr 20, 2024
1 parent 9294f5b commit e2158d4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/actions/init-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ outputs:
value: ${{steps.vars.outputs.draft}}
manifest:
value: ${{steps.vars.outputs.manifest}}
python:
value: ${{steps.vars.outputs.python}}
python-appimage:
value: ${{steps.vars.outputs.python-appimage}}
runs:
using: "composite"
steps:
Expand All @@ -19,6 +23,8 @@ runs:
echo "tag=$(git describe --tags)" >> $GITHUB_OUTPUT
echo "draft=$(git describe --tags | sed -e 's/^test.*/true/;s/^v.*/false/')" >> $GITHUB_OUTPUT
echo "manifest=$(cat src/main/resources/base/ayab/firmware/manifest.txt)" >> $GITHUB_OUTPUT
echo "python=python${{matrix.python-version}}" >> $GITHUB_OUTPUT
echo "python-appimage=python${{matrix.python-version}}.9-cp311-cp311-manylinux_2_28_x86_64.AppImage" >> $GITHUB_OUTPUT
- name: Set PACKAGE_VERSION
shell: bash
run: |
Expand All @@ -31,3 +37,4 @@ runs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"

0 comments on commit e2158d4

Please sign in to comment.