-
Notifications
You must be signed in to change notification settings - Fork 19
53 lines (47 loc) · 1.62 KB
/
deploy-now.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# To better understand this file read this:
# https://docs.ionos.space/docs/github-actions-customization/
name: Deploy Now
on:
- push
- workflow_dispatch
jobs:
deploy-now:
runs-on: ubuntu-latest
steps:
- name: Fetch project data
uses: ionos-deploy-now/retrieve-project-info-action@v1
id: project
with:
api-key: ${{ secrets.IONOS_API_KEY }}
project: ${{ secrets.IONOS_PROJECT_ID }}
service-host: api-eu.ionos.space
- name: checkout
if: ${{ steps.project.outputs.deployment-enabled == 'true' }}
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Node
if: ${{ steps.project.outputs.deployment-enabled == 'true' }}
uses: actions/setup-node@v4
with:
node-version: v14.x
- name: Build Node assets
env:
CI: true
SHOW_BLOG: true
SITE_URL: ${{ steps.project.outputs.site-url }}
URL_GITHUB: https://github.com/ionos-deploy-now/documentation/
URL_WEB: https://ionos.space
run: |
npm ci
npm run build
- name: Deploy to IONOS
if: ${{ steps.project.outputs.deployment-enabled == 'true' }}
uses: ionos-deploy-now/deploy-to-ionos-action@v1
with:
project: ${{ secrets.IONOS_PROJECT_ID }}
branch-id: ${{ steps.project.outputs.branch-id }}
service-host: api-eu.ionos.space
api-key: ${{ secrets.IONOS_API_KEY }}
dist-folder: dist
runtime-placeholder-files: ${{ steps.template.outputs.runtime-placeholder-files }}