Skip to content

Commit

Permalink
Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
Elinvention committed Nov 5, 2024
1 parent 6499251 commit b221c47
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,19 @@ jobs:
run: sudo apt-get install -y libglib2.0-dev

- name: Install gnome-shell
run: sudo apt-get install -y gnome-shell
run: sudo apt-get install -y gnome-shell --no-install-recommends

- name: Generate extension zip
run: make build

- name: Get release informations
run: |
echo "subject=$(git tag -l --format='%(contents:subject)' ${GITHUB_REF/refs\/tags\//})" >> $GITHUB_ENV
echo "body=$(git tag -l --format='%(contents:body)' ${GITHUB_REF/refs\/tags\//})" >> $GITHUB_ENV
{
echo 'body<<EOF'
git tag -l --format='%(contents:body)' ${GITHUB_REF/refs\/tags\//}
echo EOF
} >> $GITHUB_ENV
- name: Release
uses: ncipollo/release-action@v1
Expand Down

0 comments on commit b221c47

Please sign in to comment.