Skip to content

Add name to job, add concurrency group #6

Add name to job, add concurrency group

Add name to job, add concurrency group #6

Workflow file for this run

---
name: Build
on:
push:
branches:
- main
jobs:
build-artifact:
name: Build Artifact
uses: ./.github/workflows/build-artifact.yml
deploy-github-pages:
name: Deploy to GitHub Pages
runs-on: ubuntu-24.04
needs: build-artifact
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: https://bpm.robojackets.org
concurrency:
group: deploy-github-pages
cancel-in-progress: false
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4