Skip to content

docker: add GNUstep.sh script execution #13

docker: add GNUstep.sh script execution

docker: add GNUstep.sh script execution #13

Workflow file for this run

---
name: Developer image
on: # yamllint disable-line rule:truthy
push:
branches: [main]
jobs:
# Builds the Dockerfile and pushes it to dockerhub and GHCR
develop:
name: Develop - Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker - GHCR Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker - Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}
tags: type=raw,value=dev
flavor: latest=false
- name: Docker - Build / Push
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}