Skip to content

Commit

Permalink
Merge pull request #43 from riege/HardTy-patch-1
Browse files Browse the repository at this point in the history
Reduce retention period for built-result artifacts to 7 days
  • Loading branch information
HardTy authored Jan 5, 2024
2 parents 322971d + 99a858c commit f7ac555
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/rpm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,12 @@ jobs:
RPMFILE=$(find "${{ github.workspace }}/RPMS" -name "*.rpm") || exit 1
mkdir -p "$HOME/RPMS/"
cp "$RPMFILE" "$HOME/RPMS/"
echo "rpm_path=$HOME/RPMS/" >> $GITHUB_OUTPUT
echo "rpm_path=$HOME/RPMS/" >> "$GITHUB_OUTPUT"
RPMFILE=$(find "$HOME/RPMS" -name "*.rpm")
rpmsign --addsign "$RPMFILE"
- uses: actions/upload-artifact@v4
with:
name: ${{ inputs.rpm_artifact_name }}
path: ${{ steps.sign_rpm.outputs.rpm_path }}
retention-days: 7

0 comments on commit f7ac555

Please sign in to comment.