Skip to content

holy shit why is this still on buster #53

holy shit why is this still on buster

holy shit why is this still on buster #53

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: |
cd frontend
npm ci
npm run build
mv dist ..
- name: Push image to AppVenture registry
uses: docker/build-push-action@v1
with:
dockerfile: server/Dockerfile
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: registry.nush.app
repository: arxiv-nush
tags: backend
- name: Push image to AppVenture registry
uses: docker/build-push-action@v1
with:
dockerfile: frontend/Dockerfile
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: registry.nush.app
repository: arxiv-nush
tags: frontend