Skip to content

Commit

Permalink
initial version of the custom action
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-m committed Jun 24, 2021
1 parent 4a13c6e commit 14c4e2e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/upload-prod-build-output.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: upload-prod-build-output
on:
release:
types:
- created
jobs:
build-and-upload-output-to-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14'
- name: Navigate to app directory
run: pushd sample-app
- name: Install dependencies
run: npm install
- name: build production output
run: npm run build

0 comments on commit 14c4e2e

Please sign in to comment.