automated update: 2026-06-10 21:30:50

This commit is contained in:
root
2026-06-10 21:30:50 -04:00
parent 0dac947519
commit 74351512a7
2 changed files with 12 additions and 16 deletions
+3 -6
View File
@@ -7,21 +7,19 @@ on:
jobs:
build:
runs-on: ubuntu-latest
# --- ADD THIS BLOCK ---
permissions:
contents: read
packages: write
# ----------------------
steps:
- name: Free up disk space
run: |
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
echo "Disk space freed."
- name: Checkout repository
uses: actions/checkout@v4
@@ -30,13 +28,12 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.GHCR_PAT }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
# Make sure this matches your exact repo name (lowercase)
tags: ghcr.io/sudolulo/if-curator-headless:latest
+9 -10
View File
@@ -14,17 +14,18 @@ jobs:
name: Create GitHub Release & Build Image
runs-on: ubuntu-latest
permissions:
contents: write # Needed for creating releases
packages: write # Needed for pushing to GHCR
contents: write
packages: write
steps:
- name: Free up disk space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
echo "Disk space freed."
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
echo "Disk space freed."
- name: Checkout
uses: actions/checkout@v4
with:
@@ -59,9 +60,7 @@ jobs:
id: changelog
run: |
VERSION="${{ steps.tag.outputs.VERSION }}"
# Extract the section for this version from CHANGELOG.md
NOTES=$(awk "/^## \[$VERSION\]/{found=1; next} found && /^## \[/{exit} found{print}" CHANGELOG.md)
# Use a delimiter to safely pass multiline output
{
echo "NOTES<<CHANGELOG_EOF"
echo "$NOTES"
@@ -92,7 +91,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.GHCR_PAT }}
- name: Build and push Docker image
uses: docker/build-push-action@v5