fixup! fixup! Reference to self #45
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: 'Create and publish Linux Docker image' | |
on: | |
- workflow_dispatch | |
- push | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
build-and-publish-linux-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v3 | |
- name: 'Log in to the Container registry' | |
uses: docker/login-action@v2 | |
with: | |
registry: "${{ env.REGISTRY }}" | |
username: "${{ github.actor }}" | |
password: "${{ secrets.GITHUB_TOKEN }}" | |
- name: 'Build, validate and publish Linux' | |
uses: melusina-org/cl-atelier/actions/build-validate-publish@actions-2 | |
with: | |
artefact: 'docker/linux' | |
description: 'Custom Linux System for Atelier' | |
license: 'MIT' |