Skip to content

Commit b8f2932

Browse files
committed
Add artifact redirector github action
1 parent b107968 commit b8f2932

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/circleci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# To enable this workflow on a fork, comment out:
2+
#
3+
# if: github.repository == 'napari/docs'
4+
5+
name: CircleCI artifact redirector
6+
7+
on: [status]
8+
jobs:
9+
circleci_artifacts_redirector_job:
10+
runs-on: ubuntu-latest
11+
if: "github.repository == 'melissawm/docs' && github.event.context == 'ci/circleci: build-docs'"
12+
name: Run CircleCI artifacts redirector
13+
# if: github.repository == 'napari/docs'
14+
steps:
15+
- name: GitHub Action step
16+
uses: larsoner/circleci-artifacts-redirector-action@master
17+
with:
18+
repo-token: ${{ secrets.GITHUB_TOKEN }}
19+
artifact-path: docs/_build/index.html
20+
circleci-jobs: build-docs
21+
job-title: Check the rendered docs here!

0 commit comments

Comments
 (0)