chore(deps): update all non-major dependencies (#118) #99
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: Continuous Delivery | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/**' | |
- 'Dockerfile' | |
- '.github/workflows/continuous-delivery.yml' | |
- 'package.json' | |
jobs: | |
PublishAcrysel: | |
name: Publish Acrysel image to container registries | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v4 | |
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 Acrysel Docker image | |
uses: docker/[email protected] | |
with: | |
push: true | |
context: . | |
tags: ghcr.io/skyra-project/acrysel:latest |