Skip to content

Remove ls from dockerfile (#2) #7

Remove ls from dockerfile (#2)

Remove ls from dockerfile (#2) #7

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
name: Build, and push
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Log in to the Container registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: dustinrouillard
password: ${{ secrets.GHCR_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: ./
push: true
tags: ghcr.io/${{ github.repository }}:${{ github.sha }}