Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc5f134833 | ||
| 778677d165 | |||
| 9a89d41c75 |
@@ -5,12 +5,8 @@ on:
|
||||
branches:
|
||||
- release
|
||||
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
directus-release:
|
||||
description: 'A parameter passed via API'
|
||||
required: true
|
||||
default: 'true'
|
||||
repository_dispatch:
|
||||
types: [directus_update]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@@ -40,7 +36,7 @@ jobs:
|
||||
path: |
|
||||
.astro
|
||||
node_modules/.vite
|
||||
key: ${{ runner.os }}-astro-${{ hashFiles('**/*.astro', 'astro.config.mjs') }}-${{ github.event_name == 'workflow_dispatch' && github.run_id || 'static' }}
|
||||
key: ${{ runner.os }}-astro-${{ hashFiles('**/*.astro', 'astro.config.mjs') }}-${{ github.event_name == 'repository_dispatch' && github.run_id || 'static' }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-astro-${{ hashFiles('**/*.astro', 'astro.config.mjs') }}-
|
||||
${{ runner.os }}-astro-
|
||||
@@ -107,8 +103,8 @@ jobs:
|
||||
needs: [ build, guarddog ]
|
||||
runs-on: ubuntu-js
|
||||
if: |
|
||||
github.event_name != 'workflow_dispatch' ||
|
||||
inputs['directus-release'] == 'true'
|
||||
github.event_name != 'repository_dispatch' ||
|
||||
github.event.client_payload.data.published == true
|
||||
outputs:
|
||||
new-release-published: ${{ steps.semantic.outputs.new-release-published }}
|
||||
new-release-version: ${{ steps.semantic.outputs.new-release-version }}
|
||||
@@ -121,7 +117,7 @@ jobs:
|
||||
token: ${{ secrets.BOT_TOKEN }}
|
||||
|
||||
- name: Prepare Content Patch
|
||||
if: github.event_name == 'workflow_dispatch'
|
||||
if: github.event_name == 'repository_dispatch'
|
||||
run: |
|
||||
git config user.name "gitea-bot"
|
||||
git config user.email "gitea-bot@alexlebens.net"
|
||||
@@ -248,7 +244,7 @@ jobs:
|
||||
tags: action,failed
|
||||
details: 'Harbor Image for Site Profile has failed to be released.'
|
||||
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/site-profile/actions?workflow=release-image.yaml", "clear": true}]'
|
||||
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/site-profile/actions?workflow=release-image.yml", "clear": true}]'
|
||||
image: true
|
||||
|
||||
release-gitea:
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
# [3.14.0](https://gitea.alexlebens.dev/alexlebens/site-profile/compare/3.13.0...3.14.0) (2026-03-17)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* release for content ([abdb30b](https://gitea.alexlebens.dev/alexlebens/site-profile/commit/abdb30b0e362bb97d59969cc5ea714c60b0efe60))
|
||||
|
||||
# [3.13.0](https://gitea.alexlebens.dev/alexlebens/site-profile/compare/3.12.1...3.13.0) (2026-03-16)
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "site-profile",
|
||||
"type": "module",
|
||||
"version": "3.13.0",
|
||||
"version": "3.14.0",
|
||||
"homepage": "https://www.alexlebens.dev",
|
||||
"bugs": {
|
||||
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",
|
||||
|
||||
Reference in New Issue
Block a user