23.04 #195
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Desktop Environment | |
on: [push, workflow_call] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Sanitise repository owner | |
run: echo REPOSITORY_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ env.REPOSITORY_OWNER }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and Push to GitHub Container Registry | |
uses: docker/build-push-action@v4 | |
with: | |
build-args: | | |
DESKTOP_ENVIRONMENT_USER=${{ env.REPOSITORY_OWNER }} | |
DESKTOP_ENVIRONMENT_GITHUB_USER=${{ env.REPOSITORY_OWNER }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
file: docker/Dockerfile | |
push: true | |
tags: ghcr.io/${{ env.REPOSITORY_OWNER }}/desktop-environment:latest | |
- name: Run desktop environment tests | |
run: ./docker/scripts/test.sh | |
env: | |
DESKTOP_ENVIRONMENT_REGISTRY: ghcr.io/${{ env.REPOSITORY_OWNER }} | |
continue-on-error: true |