Update README.md #35637
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: Update README.md | |
on: | |
schedule: | |
- cron: '0 0/1 * * *' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
contents: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup ssh-agent | |
uses: webfactory/ssh-agent@v0.7.0 | |
with: | |
ssh-private-key: ${{secrets.SSH_PRIVATE_KEY}} | |
- name: Setup User Information | |
run: | | |
git config --global user.email "ivanwei_slack@outlook.com" | |
git config --global user.name "WorldEarthBot" | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Node.js packages | |
run: yarn install | |
- name: Refresh Raw data | |
env: | |
CONFERENCE_SOURCE_URL: ${{secrets.CONFERENCE_SOURCE_URL}} | |
ORGANIZATION_SOURCE_URL: ${{secrets.ORGANIZATION_SOURCE_URL}} | |
run: | | |
make refresh-conference-data | |
make refresh-organization-data | |
- name: Transfer Data | |
env: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
run: | | |
make refresh-README-file | |
# - name: Create html page | |
# run: make refresh-HTML-file | |
- name: Deployment | |
run: make deployment |