Add EIZO Monitor Test 2.1 #6
Workflow file for this run
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 | |
on: [push, pull_request, workflow_dispatch] | |
env: | |
NAME: EizoMonitorTest | |
PACKAGE_NAME: package.nw | |
RETENTION_DAYS: 30 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out | |
- name: Check out ${{env.NAME}} | |
uses: actions/[email protected] | |
# Create package | |
- name: Create ${{env.PACKAGE_NAME}} | |
run: | | |
7z -tzip -mx=9 a ${{env.PACKAGE_NAME}} css/* img/* js/* *.png index.html inject_js_start.js LICENSE package.json README.md | |
# Upload package | |
- name: Upload ${{env.PACKAGE_NAME}} | |
uses: actions/[email protected] | |
with: | |
name: ${{env.PACKAGE_NAME}} | |
path: ${{env.PACKAGE_NAME}} | |
compression-level: 0 | |
retention-days: ${{env.RETENTION_DAYS}} |