Allow manually running GitHub Actions workflows and use consistent file extension (#2215)

* Rename deploy-gh-pages.yaml to deploy-gh-pages.yml
* Enable workflow_dispatch trigger to allow manually running
This commit is contained in:
Nikita Sobolev 2022-01-20 10:48:26 +03:00 committed by GitHub
parent f91ab0d4ec
commit d9e63ccf42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
name: Build name: Build
on: [push, pull_request] on: [push, pull_request, workflow_dispatch]
jobs: jobs:
build: build:

View File

@ -3,6 +3,7 @@ name: Deploy to GitHub Pages
on: on:
push: push:
branches: [main] branches: [main]
workflow_dispatch:
jobs: jobs:
deploy-to-pages: deploy-to-pages:

View File

@ -1,6 +1,6 @@
name: Lint name: Lint
on: [push, pull_request] on: [push, pull_request, workflow_dispatch]
jobs: jobs:
pre-commit: pre-commit: