diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2022-03-20 16:43:47 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2022-03-20 16:43:47 +0100 |
| commit | 0619c7ef198349c11c8ef598c7caa741b3c4c9b0 (patch) | |
| tree | c10369052f44a413e9fe3d035adf876b453c5124 /.github | |
| parent | 017eb7b3cb631bb432066539c459bfa96afa0543 (diff) | |
Automatically publish statistics
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 }} |
