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

try to guess path

try to guess path #3

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:
- uses: actions/checkout@v3
- uses: docker/build-push-action@v2
with:
tags: deside-deliverables
push: false
- uses: addnab/docker-run-action@v3
name: Build the pages
with:
image: deside-deliverables
run: ./bin/generate-docs.sh
- 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