We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de4cfab commit c6a848fCopy full SHA for c6a848f
.github/workflows/docs.yaml
@@ -6,8 +6,9 @@ permissions:
6
on:
7
workflow_dispatch:
8
push:
9
- branches:
10
- - main
+ branches: ['main', 'rel-*', 'ci/*']
+ pull_request:
11
+ merge_group:
12
schedule:
13
- cron: '0 18 * * *'
14
@@ -44,13 +45,14 @@ jobs:
44
45
46
- name: Package and upload artifact
47
uses: actions/upload-pages-artifact@v3
48
+ if: github.ref == 'refs/heads/main'
49
with:
50
path: ./target/website/
51
52
deploy:
53
name: Deploy
54
runs-on: ubuntu-latest
- if: github.repository == 'rustls/rustls-ffi'
55
+ if: github.repository == 'rustls/rustls-ffi' && github.ref == 'refs/heads/main'
56
needs: generate
57
permissions:
58
pages: write
0 commit comments