Skip to content

adds https middleware #28

adds https middleware

adds https middleware #28

Workflow file for this run

name: ci
on:
push:
branches:
- 'main'
tags:
- "v*.*.*"
pull_request:
branches:
- "main"
jobs:
push-images:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/VNG-Realisatie/token-issuer
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Log in to github
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}