staticwebapp-cv-tormakristo.../.drone.yml

19 lines
522 B
YAML
Raw Permalink Normal View History

2022-05-17 22:06:10 +02:00
kind: pipeline
type: docker
name: Azure Static WebApp
steps:
2022-05-17 22:11:16 +02:00
- name: Checkout submodules
image: bitnami/git
commands:
- git submodule update --init --recursive
2022-05-17 22:06:10 +02:00
- name: Build and upload static web app
environment:
APITOKEN:
from_secret: APITOKEN
2023-09-23 11:30:44 +02:00
HUGO_VERSION: 0.118.2
2022-05-17 22:06:10 +02:00
image: mcr.microsoft.com/appsvc/staticappsclient:stable
commands:
2023-01-14 15:36:00 +01:00
- /bin/staticsites/StaticSitesClient --apiToken $APITOKEN --outputLocation "public" --app "/drone/src" --deploymentaction "upload" --deploymentProvider "Gitea"