Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badaix committed Aug 18, 2024
1 parent c50a201 commit 2aa81a2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,18 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "FOO=$( \
echo "URL=$( \
gh release create v0.0.0 \
--draft \
--repo="$GITHUB_REPOSITORY" \
--title="Snapcast v0.0.0" \
--notes-file changelog_current.md \
)" >> $GITHUB_ENV
echo "TAG=$(basename ${{ env.URL }})" >> $GITHUB_ENV
- name: Use the value
id: step_two
run: |
echo "${{ env.FOO }}"
echo "${{ env.TAG }}"
# https://github.com/badaix/snapcast/releases/tag/untagged-e3aef68bf08c739796d1

deb:
Expand Down Expand Up @@ -72,6 +73,9 @@ jobs:
container:
image: ${{matrix.image_prefix}}${{matrix.debian}}
steps:
- name: Use the value
run: |
echo "${{ env.TAG }}"
- name: Get dependencies
run: apt-get update && apt-get install -yq wget debhelper build-essential cmake git rename libatomic1 libasound2-dev libsoxr-dev libvorbisidec-dev libvorbis-dev libflac-dev libopus-dev alsa-utils libpulse-dev libavahi-client-dev avahi-daemon libexpat1-dev python3 ccache unzip
env:
Expand Down

0 comments on commit 2aa81a2

Please sign in to comment.