Skip to content

Commit

Permalink
Deploy docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
joodie committed May 15, 2024
1 parent 4856e66 commit bbbf842
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: docker-deploy

on:
push:
branches:
- 'main'
tags:
- 'v[0-9]+.[0-9]+'

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: eduhub-docker-production.artie.ia.surfsara.nl/eduhub-gateway
tags: |
type=match,pattern=v\d+.\d+
type=sha,format=long
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: eduhub-docker-production.artie.ia.surfsara.nl
username: ${{ secrets.ARTIFACTORY_USERNAME }}
password: ${{ secrets.ARTIFACTORY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit bbbf842

Please sign in to comment.