Skip to content

WeBalance becomes WePosture #67

WeBalance becomes WePosture

WeBalance becomes WePosture #67

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: run
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" 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
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
run:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Install tools
run: source .devcontainer/setup.sh
- name: Build main website
run: make -f docs/Makefile html
- name: Upload website to artifacts
uses: actions/upload-pages-artifact@v1
with:
path: './out/docs/html'
- name: Publish website at GitHub Pages
id: deployment
if: github.ref == 'refs/heads/main'
uses: actions/deploy-pages@v1