added .woodpecker.yml
added umami
This commit is contained in:
parent
fe7ba3a018
commit
59275e7da5
2 changed files with 36 additions and 0 deletions
34
.woodpecker.yml
Normal file
34
.woodpecker.yml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
pipeline:
|
||||||
|
build:
|
||||||
|
image: node:lts
|
||||||
|
commands:
|
||||||
|
- npm install
|
||||||
|
- npm run build
|
||||||
|
deploy-dev:
|
||||||
|
image: alpine
|
||||||
|
secrets:
|
||||||
|
- FTP_HOST
|
||||||
|
- FTP_USERNAME
|
||||||
|
- FTP_PASSWORD
|
||||||
|
commands:
|
||||||
|
- which lftp || ( apk --update add lftp )
|
||||||
|
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ dev.samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- develop
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
deploy:
|
||||||
|
image: alpine
|
||||||
|
secrets:
|
||||||
|
- FTP_HOST
|
||||||
|
- FTP_USERNAME
|
||||||
|
- FTP_PASSWORD
|
||||||
|
commands:
|
||||||
|
- which lftp || ( apk --update add lftp )
|
||||||
|
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
event:
|
||||||
|
- push
|
|
@ -32,6 +32,8 @@
|
||||||
<link rel="shortcut icon" href="img/samuel.png">
|
<link rel="shortcut icon" href="img/samuel.png">
|
||||||
<link rel="stylesheet" href="css/main.min.css">
|
<link rel="stylesheet" href="css/main.min.css">
|
||||||
<script async defer data-domain="samuel-philipp.de" src="https://plausible.sp-codes.de/js/plausible.js"></script>
|
<script async defer data-domain="samuel-philipp.de" src="https://plausible.sp-codes.de/js/plausible.js"></script>
|
||||||
|
<script async defer data-website-id="594e86a6-02bb-407d-98e0-73e31827a785" data-do-not-track="true"
|
||||||
|
data-domains="samuel-philipp.de" src="https://umami.sp-codes.de/umami.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="site-container">
|
<div class="site-container">
|
||||||
|
|
Loading…
Reference in a new issue