Create npm-gulp.yml #1
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: Statoscope upload reference statistics | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build_and_upload: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Reconfigure git to use HTTPS authentication | |
uses: GuillaumeFalourd/SSH-to-HTTPS@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: npm ci | |
- name: Build | |
run: npm run build:production; mv ./public/statoscope-build-statistics.json ./statoscope-reference.json | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: statoscope-reference | |
path: ./statoscope-reference.json |