Skip to content

Add publish action

Add publish action #1

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "github-actions" ]
pull_request:
branches: [ "github-actions" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file projects/savant-lib/Dockerfile --tag savant-image
- name: Publish from image
run: docker run savant-image npm publish