Skip to content

Commit

Permalink
Create node.js.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinDupeyrat authored Oct 4, 2020
1 parent 7a19ab7 commit baab7b9
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish React on Docker Image to GitHub Packages
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: npm --prefix portfolio-ui-react install
- name: build project
run: npm --prefix portfolio-ui-react run build --prod
- name: Build and Push Docker Image
uses: docker/build-push-action@v1
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: docker.pkg.github.com
repository: kevindupeyrat/portfolio-ui-react/portfolio-ui-react-docker-image
dockerfile: portfolio-ui-react/Dockerfile
path: portfolio-ui-react
tag_with_ref: true

0 comments on commit baab7b9

Please sign in to comment.