Skip to content

Export WebApp [ Hackweek ] #15

Export WebApp [ Hackweek ]

Export WebApp [ Hackweek ] #15

Workflow file for this run

name: Export WebApp [ Hackweek ]
on:
workflow_dispatch:
inputs:
tag:
type: input
description: 'unique tag'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Build WebApp
run: |
yarn
yarn build
- name: Uploading artifact
if: always()
uses: actions/upload-artifact@v3
with:
name: webapp-${{ github.event.inputs.tagx }}
path: ./build
retention-days: 1