Update tags #4
Workflow file for this run
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 tags | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
update-tags: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up GitHub Actions Bot | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "GitHub Actions Bot" | |
- name: Run update script | |
run: | | |
git clone https://github.com/ensae-reproductibilite/application-correction-admin.git admin | |
./admin/update-tags.sh |