feat: update run workflow to set GH_ACCESS_TOKEN in the environment f… #15
This file contains hidden or 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: AE Docs Updater Program Runner | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
jobs: | |
run: | |
name: Run Docs Updater Program | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run program | |
env: | |
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
run: ./program |