Skip to content

Fix list key warnings #84

Fix list key warnings

Fix list key warnings #84

Workflow file for this run

name: Release Static Application
on:
pull_request:
push:
tags:
- "*"
jobs:
build_and_release:
name: Build and Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "20.5"
- name: Build
run: scripts/build.sh
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: "reports/dist/*.zip"