test browser #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build master | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build TS | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- run: npm ci | |
- run: npm run compile | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: build | |
path: | | |
./lib/ | |
package.json | |
package-lock.json | |
./public/ | |
./docker/Dockerfile | |
./config/ | |
build-docker: | |
runs-on: ubuntu-latest | |
name: Build docker image | |
needs: [build] | |
steps: | |
- uses: actions/download-artifact@v2 | |
with: | |
name: build | |
- uses: docker/setup-buildx-action@v1 | |
- name: login to dockerhub | |
uses: docker/login-action@v1 | |
with: | |
username: creiger | |
password: ${{secrets.DOCKER_TOKEN}} | |
- run: mv ./docker/Dockerfile ./Dockerfile | |
- run: rm -rf ./docker | |
- name: Build docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
tags: | | |
creiger/nhl-stats:latest | |
creiger/nhl-stats:1.0.0-${{github.run_number}} | |
push: true | |