Skip to content

Merge pull request #1050 from deribaucourt/master #58

Merge pull request #1050 from deribaucourt/master

Merge pull request #1050 from deribaucourt/master #58

Workflow file for this run

{
"concurrency": {
"cancel-in-progress": true,
"group": "pages"
},
"jobs": {
"build-and-pages": {
"environment": {
"name": "github-pages",
"url": "${{ steps.deployment.outputs.page_url }}"
},
"if": "github.repository == 'mirabilos/dygraphs'",
"runs-on": "ubuntu-24.04",
"steps": [
{
"uses": "actions/[email protected]"
},
{
"run": "./.pages.sh"
},
{
"uses": "actions/[email protected]",
"with": {
"name": "package-lock.json",
"path": "package-lock.json"
}
},
{
"uses": "actions/[email protected]"
},
{
"run": "./.post.sh"
},
{
"id": "deployment",
"uses": "actions/[email protected]"
}
]
},
"build-split": {
"environment": {
"name": "GHA-output",
"url": "${{ steps.deployment.outputs.page_url }}"
},
"if": "github.repository == 'danvk/dygraphs'",
"runs-on": "ubuntu-24.04",
"steps": [
{
"uses": "actions/[email protected]"
},
{
"run": "./.pages.sh"
},
{
"uses": "actions/[email protected]",
"with": {
"name": "package-lock.json",
"path": "package-lock.json"
}
},
{
"uses": "actions/[email protected]"
},
{
"run": "./.post.sh"
}
]
}
},
"name": "build and test",
"on": {
"push": {
"branches": [
"debian",
"master"
]
},
"workflow_dispatch": null
},
"permissions": {
"contents": "read",
"id-token": "write",
"pages": "write"
}
}