Create update-website.yml
This commit is contained in:
parent
4fc38fa41e
commit
7f32d0ac19
1 changed files with 17 additions and 0 deletions
17
.github/workflows/update-website.yml
vendored
Normal file
17
.github/workflows/update-website.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Update Website
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Run a one-line script
|
||||
run: echo Hello, world!
|
Reference in a new issue