Bump braces and grunt-cli #58
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: Build Re:VIEW to make distribution file | |
# The workflow is triggered on pushes to the repository. | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# uses v3 Stable version | |
# https://github.com/actions/checkout | |
- name: checkout source | |
uses: actions/checkout@v3 | |
# Build Artifacts | |
- name: Build distribution file | |
uses: TechBooster/ReVIEW-build-artifact-action@master | |
# Upload Distribution file | |
- name: Upload distribution file to github artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Output documents | |
path: ./articles/*.pdf |