Skip to content

Release v0.6.0 (#1264) #1

Release v0.6.0 (#1264)

Release v0.6.0 (#1264) #1

Workflow file for this run

name: Dev Container Build and Push Image
on:
workflow_dispatch:
push:
branches: [main]
paths:
- envs/linux-pinned.yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build Dev Container Image
uses: devcontainers/[email protected]
with:
subFolder: .github
cacheFrom: ghcr.io/${{ github.repository }}-dev-env
imageName: ghcr.io/${{ github.repository }}-dev-env
push: always