選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
749 B

  1. name: Mis a jour du resultat du vote Borda
  2. on:
  3. - push
  4. jobs:
  5. build:
  6. runs-on: ubuntu-latest
  7. permissions:
  8. contents: write
  9. steps:
  10. - uses: actions/checkout@v2
  11. - name: Mis a jour du resultat du vote Borda
  12. run: python ${{ github.workspace }}/vote_borda.py > ${{ github.workspace }}/resultat_vote.txt
  13. - name: Ajouter le fichier resultat_vote.txt
  14. run: git add ${{ github.workspace }}/resultat_vote.txt
  15. - name: Commit and Push
  16. run: |
  17. git config --local user.email "action@github.com"
  18. git config --local user.name "GitHub Action"
  19. git add ${{ github.workspace }}/resultat_vote.txt
  20. git commit -m "Actualisation du resultat du vote Borda"
  21. git push origin main