Skip to content

Commit

Permalink
[MWP-387] patch: update gh cli command
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeredian committed Nov 28, 2023
1 parent 92057a1 commit eefc4ce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/create_release_with_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ jobs:
create-curapackages:
name: "New Release"
runs-on: "ubuntu-latest"

permissions:
contents: write
actions: write
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -31,6 +33,8 @@ jobs:
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
run: |
cd build
files="$(find ../ -type f -name "*.curapackage" -printf "-a %p ")"
gh release upload $RELEASE_VERSION $files --clobber
for f in $(find ../ -type f -name "*.curapackage"); do
gh release upload $RELEASE_VERSION $f --clobber
done

0 comments on commit eefc4ce

Please sign in to comment.