Skip to content

Commit

Permalink
GH Actions fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lowell80 committed Mar 3, 2023
1 parent 682af4e commit cb98270
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,16 @@ jobs:
python -m pip install -r requirements-doc.txt
python splunk_app/build.py -vv
set +x
echo "path=$(cat .release_path) >> $GITHUB_OUTPUT"
echo "name=$(cat .release_name) >> $GITHUB_OUTPUT"
echo "path=$(cat .release_path)" >> $GITHUB_OUTPUT
echo "name=$(cat .release_name)" >> $GITHUB_OUTPUT
env:
KSCONF_DEBUG: 1

- name: Create and upload GitHub release
uses: "marvinpinto/action-automatic-releases@latest"
- name: Create release and upload GitHub artifact
uses: softprops/action-gh-release@v1
if: contains(github.ref, 'tags/v') && matrix.build_sdist == true
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: ${{ github.ref }}
name: Release ${{ github.ref_name }}
draft: false
prerelease: false
files: ${{ steps.buildpkg.outputs.path }}

0 comments on commit cb98270

Please sign in to comment.