Files
Orchestrator/.gitea/workflows/confluence_bot-confluence-push.yml
ankn b46de6dc7d
Deploy CV Site (andreknie.de) / deploy (push) Canceled after 0s
ci: migrate GitHub actions to Gitea actions
2026-07-22 15:42:06 +02:00

20 lines
447 B
YAML

name: Push Pages to Confluence
on:
push:
paths: ['pages/**']
workflow_dispatch: {}
jobs:
push:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Write secrets file
run: |
"CONFLUENCE_TOKEN=${{ secrets.CONFLUENCE_TOKEN }}" | Out-File .secrets -Encoding UTF8
- name: Push pages to Confluence
run: powershell -ExecutionPolicy Bypass -File scripts/confluence-push.ps1