869f0b0c55
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [https://git.keligrubb.com/actions/checkout](https://git.keligrubb.com/actions/checkout) | action | major | `v6` → `v7` | --- ### Release Notes <details> <summary>actions/checkout (https://git.keligrubb.com/actions/checkout)</summary> ### [`v7.0.0`](https://git.keligrubb.com/actions/checkout/blob/HEAD/CHANGELOG.md#v700) [Compare Source](https://git.keligrubb.com/actions/checkout/compare/v7...v7) - Block checking out fork PR for pull\_request\_target and workflow\_run by [@​aiqiaoy](https://github.com/aiqiaoy) in [#​2454](https://github.com/actions/checkout/pull/2454) - Bump actions/publish-immutable-action from 0.0.3 to 0.0.4 in the minor-actions-dependencies group across 1 directory by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2458](https://github.com/actions/checkout/pull/2458) - Bump flatted from 3.3.1 to 3.4.2 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2460](https://github.com/actions/checkout/pull/2460) - Bump js-yaml from 4.1.0 to 4.2.0 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2461](https://github.com/actions/checkout/pull/2461) - Bump [@​actions/core](https://github.com/actions/core) and [@​actions/tool-cache](https://github.com/actions/tool-cache) and Remove uuid by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2459](https://github.com/actions/checkout/pull/2459) - upgrade module to esm and update dependencies by [@​aiqiaoy](https://github.com/aiqiaoy) in [#​2463](https://github.com/actions/checkout/pull/2463) - Bump the minor-npm-dependencies group across 1 directory with 3 updates by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2462](https://github.com/actions/checkout/pull/2462) ### [`v7`](https://git.keligrubb.com/actions/checkout/blob/HEAD/CHANGELOG.md#v700) [Compare Source](https://git.keligrubb.com/actions/checkout/compare/v6.0.3...v7) - Block checking out fork PR for pull\_request\_target and workflow\_run by [@​aiqiaoy](https://github.com/aiqiaoy) in [#​2454](https://github.com/actions/checkout/pull/2454) - Bump actions/publish-immutable-action from 0.0.3 to 0.0.4 in the minor-actions-dependencies group across 1 directory by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2458](https://github.com/actions/checkout/pull/2458) - Bump flatted from 3.3.1 to 3.4.2 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2460](https://github.com/actions/checkout/pull/2460) - Bump js-yaml from 4.1.0 to 4.2.0 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2461](https://github.com/actions/checkout/pull/2461) - Bump [@​actions/core](https://github.com/actions/core) and [@​actions/tool-cache](https://github.com/actions/tool-cache) and Remove uuid by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2459](https://github.com/actions/checkout/pull/2459) - upgrade module to esm and update dependencies by [@​aiqiaoy](https://github.com/aiqiaoy) in [#​2463](https://github.com/actions/checkout/pull/2463) - Bump the minor-npm-dependencies group across 1 directory with 3 updates by [@​dependabot](https://github.com/dependabot)\[bot] in [#​2462](https://github.com/actions/checkout/pull/2462) </details> --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMzMuNCIsInVwZGF0ZWRJblZlciI6IjQzLjIzMy40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: #21 Co-authored-by: Renovate Bot <renovate@keligrubb.com> Co-committed-by: Renovate Bot <renovate@keligrubb.com>
88 lines
2.9 KiB
YAML
88 lines
2.9 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
generate-dungeon:
|
|
name: generate-dungeon
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/puppeteer/puppeteer:latest
|
|
env:
|
|
OLLAMA_API_URL: https://ai.keligrubb.com/api/chat/completions
|
|
OLLAMA_API_KEY: ${{ secrets.OLLAMA_API_KEY }}
|
|
OLLAMA_MODEL: qwen3.5-122b-a10b
|
|
COMFYUI_URL: http://192.168.1.124:8188
|
|
steps:
|
|
- name: Checkout
|
|
uses: https://git.keligrubb.com/actions/checkout@v7
|
|
|
|
- name: Setup Node
|
|
uses: https://git.keligrubb.com/actions/setup-node@v6
|
|
with:
|
|
node-version: "24"
|
|
cache: "npm"
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Generate dungeon PDF
|
|
run: npm start
|
|
|
|
- name: Upload PDF artifact
|
|
uses: https://git.keligrubb.com/actions/upload-artifact@v3
|
|
with:
|
|
name: release-pdf
|
|
path: "*.pdf"
|
|
|
|
upload-to-gitea-release:
|
|
name: upload-to-gitea-release
|
|
runs-on: ubuntu-latest
|
|
needs: generate-dungeon
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.SCROLLSMITH_GITEA_TOKEN }}
|
|
steps:
|
|
- name: Download PDF artifact
|
|
uses: https://git.keligrubb.com/actions/download-artifact@v3
|
|
with:
|
|
name: release-pdf
|
|
path: .
|
|
|
|
- name: Create release and upload PDF
|
|
run: |
|
|
api_base="https://git.keligrubb.com/api/v1/repos/${{ gitea.repository }}"
|
|
pdf=$(ls *.pdf | head -n1)
|
|
tag=$(date +%F)
|
|
echo "Creating release for tag $tag..."
|
|
create_resp=$(curl -s -w "%{http_code}" -o /tmp/create.json -X POST \
|
|
-H "Authorization: token $GITEA_TOKEN" \
|
|
-H "Content-Type: application/json" \
|
|
-d "{\"tag_name\":\"$tag\",\"name\":\"$tag\"}" \
|
|
"$api_base/releases")
|
|
echo "Create release HTTP status: $create_resp"
|
|
echo "Fetching release ID..."
|
|
release_id=$(curl -s \
|
|
-H "Authorization: token $GITEA_TOKEN" \
|
|
"$api_base/releases/tags/$tag" |
|
|
awk -F: '/"id"[ ]*:/ {gsub(/[^0-9]/,"",$2); print $2; exit}')
|
|
echo "Release ID = $release_id"
|
|
echo "Checking if asset $pdf already exists..."
|
|
assets=$(curl -s -H "Authorization: token $GITEA_TOKEN" \
|
|
"$api_base/releases/$release_id/assets")
|
|
echo "Assets response: $assets"
|
|
if echo "$assets" | grep -q "\"name\":\"$pdf\""; then
|
|
echo "Asset $pdf already uploaded, skipping."
|
|
exit 0
|
|
fi
|
|
echo "Uploading $pdf to release $release_id..."
|
|
upload_resp=$(curl -s -w "%{http_code}" -o /tmp/upload.json -X POST \
|
|
-H "Authorization: token $GITEA_TOKEN" \
|
|
-F "attachment=@$pdf" \
|
|
"$api_base/releases/$release_id/assets")
|
|
echo "Upload HTTP status: $upload_resp"
|
|
echo "Upload response: $(cat /tmp/upload.json)"
|