Merge pull request #185 from maxonfjvipon/collections-hamcrest-strings #134
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pages | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
release: | |
branches: | |
- master | |
tags: | |
- '*' | |
jobs: | |
pages: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: mkdir -p data && touch data/tags.txt | |
- run: git ls-remote --tags --heads origin > data/tags.txt | |
- run: sed -i '' 's+refs/tags/++g' data/tags.txt | |
- run: sed -i '' 's+refs/heads/++g' data/tags.txt | |
- run: touch data/objectionary.lst | |
- run: find objects -name '*.eo' > data/objectionary.lst | |
- run: find tests -name '*.eo' >> data/objectionary.lst | |
- uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: data | |
clean: false |