Skip to content

Commit

Permalink
updated releases
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2005 committed Jan 2, 2025
1 parent 995cb18 commit 731f5ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pifile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
-
name: Checkout repository
uses: actions/checkout@v1
uses: actions/checkout@v4
-
name: Get the version
id: get_version
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
steps:
-
name: Checkout repository
uses: actions/checkout@v1
uses: actions/checkout@v4
-
name: Get the version
id: get_version
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
-
name: Upload build artifacts
id: upload_deploy
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ steps.get_version.outputs.version }}
path: |
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
steps:
-
name: Download build artifacts
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4
with:
name: ${{ steps.get_version.outputs.version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
stale-issue-label: 'no-issue-activity'
exempt-issue-labels: 'awaiting-approval,work-in-progress,dontclose,documentation,security,pinned,future-enhancement,enhancement'
close-issue-message: 'This issue was closed because it has been stalled for 60 days with no activity.'
days-before-issue-close: 0
days-before-issue-close: 30
days-before-issue-stale: 120
exempt-all-pr-assignees: true
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
Expand Down
2 changes: 1 addition & 1 deletion export-image/prerun.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ALIGN="$((4 * 1024 * 1024))"
# filesystem block size) and gives some free space on the resulting
# image.
#ROOT_MARGIN="$(echo "($ROOT_SIZE * 0.2 + 200 * 1024 * 1024) / 1" | bc)"
ROOT_MARGIN="$(echo "($ROOT_SIZE * 0.2) / 1" | bc)"
ROOT_MARGIN="$(echo "(($ROOT_SIZE * 0.2) + (512 * 1024 * 1024)) / 1" | bc)" # add 512MB to the rootfs size

BOOT_PART_START=$((ALIGN))
BOOT_PART_SIZE=$(((BOOT_SIZE + ALIGN - 1) / ALIGN * ALIGN))
Expand Down

0 comments on commit 731f5ac

Please sign in to comment.