Skip to content

Commit

Permalink
Merge pull request #1 from adorsys/deliveryworkflow
Browse files Browse the repository at this point in the history
add: create continuous delivery workflow
  • Loading branch information
ArmandMeppa authored Feb 7, 2024
2 parents d053887 + 8603dc2 commit 50a8540
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: cd
on:
push:
branches:
- cd
permissions:
packages: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/ADORSYS/kcoid4vci
tags: type=sha
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit 50a8540

Please sign in to comment.