Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

build: husky changes #5

build: husky changes

build: husky changes #5

name: Continuous Delivery
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'src/**'
- 'Dockerfile'
- '.github/workflows/continuous-delivery.yml'
- 'package.json'
jobs:
PublishAlestra:
name: Publish Alestra image to container registries
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Docker Buildx
uses: docker/[email protected]
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Alestra Docker image
uses: docker/[email protected]
with:
push: true
context: .
tags: ghcr.io/skyra-project/alestra:latest