Skip to content

Bump the github-actions group with 2 updates (#1266) #1

Bump the github-actions group with 2 updates (#1266)

Bump the github-actions group with 2 updates (#1266) #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@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
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