aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/workflow.yml
blob: f7b63ed61c02ee297a2c7e30cf7d466ba1740e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Update README

on:
  push:
    branches: [master]

permissions: write-all

jobs:
  reorganize:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Generate table with `ppm`
        run: |
          wget https://github.com/pragtical/plugin-manager/releases/download/latest/ppm.x86_64-linux -O ppm-latest && chmod +x ppm-latest
          # Unstub all stubs so we can make proper previews.
          ./ppm-latest --userdir . init . && ./ppm-latest --userdir . color install "*" && ./ppm-latest purge --userdir .
          ./ppm-latest exec scripts/make_preview_image.lua colors/*
          # Remove everything after the --- so we can regenerate it.
          perl -pi -e 'exit(0) if $_ =~ m/^\-\-\-/' README.md
          echo "---" >> README.md
          echo -e "\n## Dark\n" >> README.md
          ./ppm-latest list --repository . --type color --tag "dark" --table '{{string.format("[%s](%s)", addon.id, addon.url)}},{{string.format("![%s_preview](previews/%s.svg)", addon.id,addon.id)}}' --type color --header Theme,Preview >> README.md
          echo -e "\n## Light\n" >> README.md
          ./ppm-latest list --repository . --type color --tag "light" --table '{{string.format("[%s](%s)", addon.id, addon.url)}},{{string.format("![%s_preview](previews/%s.svg)", addon.id,addon.id)}}' --type color --header Theme,Preview >> README.md
          if ! git diff --exit-code -s README.md; then
            git config --global user.name "Github Actions" && git config --global user.email "<>"
            git add README.md previews
            git commit -m '[CI] Updated README.md.'
            git push
          fi