Skip to content

Fix build

Fix build #5

Workflow file for this run

name: Docker image CI for GHCR
on:
push:
branches:
- add-actions
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Log in to GitHub Container Registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build Docker image
run: docker build -t ghcr.io/librecodecoop/nextcloud-images:30 .
- name: Push Docker image
run: docker push ghcr.io/librecodecoop/nextcloud-images:30