diff options
| -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 |
