Skip to content

Commit

Permalink
Add CI to publish releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
grafikrobot committed Dec 20, 2024
1 parent 8cff2cb commit 76fba85
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/web-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Simple workflow for deploying static content to GitHub Pages
name: Web Publish

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Run periodically to verify publish works.
schedule:
- cron: "13 5 * * 0"

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
if: github.repository == 'ecostd/standard'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Update APT Cache
run: sudo apt-get update
- name: Install (APT)
run: sudo apt-get install asciidoctor
- name: Install (B2)
run: |
set -e
pushd ..
wget "https://github.com/bfgroup/b2/archive/main.zip" -O b2.zip
unzip b2.zip
cd b2-main
CXX= ./bootstrap.sh
CXX= sudo ./b2 install b2-install-layout=portable --prefix=/usr/bin
popd
- name: Build (Web)
run: |
echo "using asciidoctor ;" > project-config.jam
b2 --debug-configuration -d+2
- name: Setup Pages
uses: actions/configure-pages@main
- name: Upload artifact
uses: actions/upload-pages-artifact@main
with:
path: ".build/pub"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main

0 comments on commit 76fba85

Please sign in to comment.