Skip to content

Update docker image name #1

Update docker image name

Update docker image name #1

Workflow file for this run

name: Docker
on:
push:
tags:
- '*'
env:
IMAGE_PATH: formio/uswds-viewer
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up SSH key
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- name: Create container
run: docker build --no-cache -t $IMAGE_PATH .