Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Adding initial SVVP

Adding initial SVVP #5

Workflow file for this run

name: Build and deploy pages
on:
# Runs on pushes targeting the default branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build docker image
uses: docker/build-push-action@v2
with:
tags: deside-deliverables
push: false
- name: Build pages
uses: addnab/docker-run-action@v3
with:
image: deside-deliverables
options: -v ${{ github.workspace }}:/opt/documents
run: /opt/documents/bin/generate-docs.sh
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: output
path: './output'
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: output
path: './output'
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './output'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1