Skip to content

Merge branch 'main' of https://github.com/PerspectiveLab/dev-env #4

Merge branch 'main' of https://github.com/PerspectiveLab/dev-env

Merge branch 'main' of https://github.com/PerspectiveLab/dev-env #4

Workflow file for this run

name: Build and Push Docker Image to GHCR
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build and Push Docker Image
run: |
docker build -t ghcr.io/perspectivelab/dev-env:latest .
docker push ghcr.io/perspectivelab/dev-env:latest