Added abstract deadlines #36
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: autogenerate-conferences | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkoput code | |
uses: actions/checkout@v4 | |
- name: run merge script | |
run: bash ${PWD}/merge.sh | |
- name: Pushes to hci-deadlines | |
uses: dmnemec/copy_file_to_another_repo_action@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.TOKEN }} | |
with: | |
source_file: 'conferences.yml' | |
destination_branch: 'gh-pages' | |
destination_repo: 'hci-deadlines/hci-deadlines.github.io' | |
destination_folder: '_data' | |
user_email: '[email protected]' | |
user_name: 'makinteract' | |
commit_message: 'Updated conferences' |