Initial commit
Some checks failed
Check Transpiled JavaScript / Check dist/ (push) Failing after 43s
Continuous Integration / JavaScript Tests (push) Failing after 5s
Continuous Integration / GitHub Actions Test (push) Failing after 5s
CodeQL / Analyze (javascript) (push) Failing after 5s
Lint Codebase / Lint Codebase (push) Failing after 5s

This commit is contained in:
Dark Steveneq
2025-12-15 20:57:47 +01:00
commit 4b004ec331
48 changed files with 47880 additions and 0 deletions

47
action.yml Normal file
View File

@@ -0,0 +1,47 @@
name: Deploy to PageUp
description: Deploys a website with PageUp
author: NoName Software
runs:
using: node24
main: dist/index.js
inputs:
timeout:
description:
'Time in milliseconds after which to timeout and cancel the deployment
(default: 10 minutes)'
required: false
default: '600000'
error_count:
description:
'Maximum number of status report errors before cancelling a deployment
(default: 10)'
required: false
default: '10'
reporting_interval:
description:
'Time in milliseconds between two deployment status report (default: 5
seconds)'
required: false
default: '5000'
build_folder:
description: 'Name of a folder with '
required: true
default: 'dist'
subdomain:
description:
'What subdomain to use for deployments (<subdomain>.nnsoft.xyz) (default:
repository name)'
required: false
default: '${{ github.event.repository.name }}'
branch:
description:
'What branch to deploy to (<branch>.<subdomain>.nnsoft.xyz) (default:
empty string for no branch)'
required: false
default: ''
outputs:
page_url:
description: 'URL to deployed PageUp'