toolkit for mdBook [mirror of my GitHub repo] docs.tonywu.dev/mdbookkit/
permalinks rust-analyzer mdbook
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update workflows

Tony Wu e6be54a5 714a9d80

+6 -6
+2 -2
.github/workflows/bin.yml
··· 39 39 - x86_64-pc-windows-msvc 40 40 41 41 release: 42 - - ${{github.event_name == 'release'}} 42 + - ${{ github.event_name == 'release' }} 43 43 manual: 44 - - ${{github.event_name == 'workflow_dispatch'}} 44 + - ${{ github.event_name == 'workflow_dispatch' }} 45 45 46 46 exclude: 47 47 - release: false
+2 -2
.github/workflows/ci.yml
··· 31 31 test: 32 32 name: Test (${{ matrix.platform }}) 33 33 34 - if: github.event_name != 'pull_request' || !startsWith(github.head_ref, 'release-plz-') 34 + if: ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'release-plz-')) }} 35 35 # don't run on release-plz branches because they are updated only after 36 36 # CI is already successful on main 37 37 ··· 42 42 - windows-latest 43 43 44 44 windows: 45 - - ${{github.event_name == 'workflow_dispatch'}} 45 + - ${{ github.event_name == 'workflow_dispatch' }} 46 46 # run on windows only on request 47 47 48 48 exclude:
+2 -2
.github/workflows/release-plz.yml
··· 18 18 name: Pull request 19 19 runs-on: ubuntu-latest 20 20 21 - if: github.repository_owner == 'tonywu6' 21 + if: github.event.workflow_run.conclusion == 'success' && github.repository_owner == 'tonywu6' 22 22 23 23 permissions: 24 24 contents: write ··· 47 47 name: Release 48 48 runs-on: ubuntu-latest 49 49 50 - if: github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' && github.repository_owner == 'tonywu6' 50 + if: github.event.workflow_run.conclusion == 'success' && github.repository_owner == 'tonywu6' 51 51 52 52 permissions: 53 53 contents: write