Skip to content

Commit

Permalink
Add github workflow to build docker image and push to registry
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkcuys committed Sep 25, 2024
1 parent ed23152 commit 4b8bc8b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Builde docker image

on:
push:
branches: ['**']
pull_request:
branches: ['**']

env:
REGISTRY: ghcr.io

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true

- run: echo "IMAGE_TAG=${GITHUB_REF_NAME//\//-}" >> $GITHUB_ENV

- name: Build docker image
run: docker build -t p2pu/lernanta:${IMAGE_TAG} .

- name: log into registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: push docker image
run: |
docker tag p2pu/lernanta:${IMAGE_TAG} ghcr.io/p2pu/lernanta:${IMAGE_TAG}
docker push ghcr.io/p2pu/lernanta:${IMAGE_TAG}

0 comments on commit 4b8bc8b

Please sign in to comment.