Skip to content

Commit

Permalink
ci: fix syntax error in GitHub actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
iRevolutionDev committed Sep 18, 2023
1 parent f91886a commit 76dd692
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: 📄 Get package version
id: get_version
run: echo ::set-output name=version::$(node -p "require('./package.json').version")
run: echo "::set-output name=version::$(node -p "require('./package.json').version")"

- name: 🚀 Upload in github release (linux)
if: matrix.os == 'ubuntu-latest'
Expand All @@ -95,10 +95,6 @@ jobs:
src-tauri/target/release/bundle/appimage/*.AppImage,
src-tauri/target/release/bundle/deb/*.deb
token: ${{ secrets.GITHUB_TOKEN }}
body: |
# BBWork v${{ steps.get_version.outputs.version }}
## Changelog
$(git log --pretty=format:"* %s" $(git describe --tags --abbrev=0)..HEAD)
draft: false
prerelease: false
allowUpdates: true
Expand Down

0 comments on commit 76dd692

Please sign in to comment.