Skip to content

Commit

Permalink
chore(ci): Publish container images to ghcr.io
Browse files Browse the repository at this point in the history
  • Loading branch information
hairmare committed Nov 19, 2024
1 parent 2b4f311 commit e26e5a7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release

on:
pull_request:
push:
branches: [main]
tags:
- 'v*.*.*'

env:
IMAGES_PROTOCOL: 'https'
IMAGES_HOSTNAME: '*'
IMAGES_PORT: '443'

jobs:
release-next-container:
uses: radiorabe/actions/.github/workflows/[email protected]
with:
image: 'ghcr.io/radiorabe/website-next'
name: 'website-next'
display-name: 'RaBe Nextjs Website'
tags: 'rabe nextjs alpine'
# the alpine base image used for the nextjs frontend does not have a
# keyless cosign signature, so we disable verifying the image.
cosign-verify: false
context: './next/'
dockerfile: './next/Dockerfile.prod'

0 comments on commit e26e5a7

Please sign in to comment.