diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/stats.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/stats.yml b/.github/workflows/stats.yml new file mode 100644 index 0000000..96f261b --- /dev/null +++ b/.github/workflows/stats.yml @@ -0,0 +1,18 @@ +name: stats +on: + push: + branches: master +jobs: + manual: + name: "Generate and distribute statistics" + runs-on: ubuntu-latest + steps: + - name: Install gitstats + uses: magit/actions/install-gitstats@main + - name: Generate statistics + uses: magit/actions/stats-generate@main + - name: Publish statistics + uses: magit/actions/stats-publish@main + with: + key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + secret: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
