Skip to content

Add devspaces image building from ansible-workspace-env-reference-image #3

Add devspaces image building from ansible-workspace-env-reference-image

Add devspaces image building from ansible-workspace-env-reference-image #3

Workflow file for this run

---
name: devspaces
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
pull_request:
branches: [main]
release:
types: [published]
workflow_dispatch:
jobs:
build:
runs-on: devtools-multiarch-builder
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the container image
uses: ./.github/actions/build-release
with:
publish: "{{ github.event_name == 'release' && github.event.action == 'published' && 'true' || 'false' }}"