diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2022-03-20 16:44:29 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2022-03-20 16:44:29 +0100 |
| commit | 8f112d3aef018ac2956999af544803331be3cdde (patch) | |
| tree | 107ba7b7291c8ec3fe0ecfd2600df7885f504f66 /.github | |
| parent | 31473211514fd29e3e86b107ec30ea04bc2563c4 (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 }} |
