Skip to content

Commit

Permalink
ci: output files for artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
aeharding committed Nov 15, 2024
1 parent a969372 commit 3c17308
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,18 +94,15 @@ jobs:
echo "all modifications:"
git --no-pager diff HEAD
{
echo 'files<<EOF'
git --no-pager diff HEAD --name-only
echo EOF
} >> "$GITHUB_ENV"
echo 'files<<EOF' >> $GITHUB_ENV
git --no-pager diff HEAD --name-only >> $GITHUB_ENV
echo EOF >> $GITHUB_ENV
- name: Upload bumped version artifacts
uses: actions/upload-artifact@v4
with:
name: release-data
path: |
${{ steps.determine_changes.outputs.files }}
path: ${{ steps.determine_changes.outputs.files }}
include-hidden-files: true # needed for .env

dispatch_beta_release:
Expand Down

0 comments on commit 3c17308

Please sign in to comment.