mirror of
https://github.com/benjamin-wilson/public-pool-ui.git
synced 2025-04-17 16:11:01 +02:00
github action
This commit is contained in:
parent
42f6232e5f
commit
83d4e80d52
32
.github/workflows/main.yml
vendored
Normal file
32
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
on: push
|
||||
name: Build Angular
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [12.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-node-
|
||||
- name: Node ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: npm install and npm run build
|
||||
run: |
|
||||
npm i
|
||||
npm run build:prod
|
||||
- name: Push Build to Releases
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "dist/angular-githubaction/*"
|
||||
token: ${{ secrets.TOKEN }}
|
Loading…
x
Reference in New Issue
Block a user