diff options
| author | Axel Forsman | 2020-09-13 16:24:18 +0200 |
|---|---|---|
| committer | Axel Forsman | 2020-09-13 16:25:00 +0200 |
| commit | 0f1bbeddf4bf8d687dd57b7910c48a2fb1d49a5b (patch) | |
| tree | 32f858962c9ca6930a274372e983aae86ce391d7 | |
| parent | 4e41161d25a5fefc1e8335adb20067122c7922a8 (diff) | |
| download | vim-helptag-versions-0f1bbeddf4bf8d687dd57b7910c48a2fb1d49a5b.tar.bz2 | |
Add workflow for building index
| -rw-r--r-- | .github/workflows/build.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..2f8f8fa --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: build + +on: + push: + branches: [master] + schedule: + - cron: '0 0 1 * *' # Monthly + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Clone Vim + run: | + git clone --bare https://github.com/vim/vim.git + - name: Build help tag version list + run: | + ./difftags ./vim.git > tag-versions + - name: Archive artifact + uses: actions/upload-artifact@v2 + with: + path: tag-versions |
