mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-11 07:58:11 -05:00
Compare commits
4 Commits
v1.12.1
...
build_docs
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e1522af8cf | ||
|
|
abe4743a74 | ||
|
|
2af1fe8697 | ||
|
|
93ee877838 |
25
.github/workflows/build-docs-on-tag.yml
vendored
Normal file
25
.github/workflows/build-docs-on-tag.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: Update website docs given new release tag
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- build_docs
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
trigger-build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Send repository dispatch event
|
||||
uses: actions/github-script@v8
|
||||
with:
|
||||
github-token: ${{ secrets.SHINY_DEV_CENTER_GITHUB_TOKEN }}
|
||||
script: |
|
||||
await github.rest.repos.createDispatchEvent({
|
||||
owner: 'rstudio',
|
||||
repo: 'shiny-dev-center',
|
||||
event_type: 'build-r-reference',
|
||||
client_payload: {}
|
||||
});
|
||||
Reference in New Issue
Block a user