Allow calling higher-order generic functions with a generic function … #770
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: autopublish | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
autopublish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Autopublish Docs | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.AUTOPUBLISH }} | |
repository: alantech/alanlang-docs | |
event-type: autopublish | |
client-payload: '{}' | |
- name: Autopublish Homepage | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.AUTOPUBLISH }} | |
repository: alantech/alanlang-homepage | |
event-type: autopublish | |
client-payload: '{}' |