From 69e14cc38a3ac07d8fb95e2edfbc9689084a59cf Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Fri, 13 Mar 2026 08:43:05 +0000
Subject: [PATCH] Add gw4/gw6 container creation time driver options
---
.github/workflows/release.yml | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 8fab546..9739908 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -9,6 +9,29 @@
contents: read
jobs:
+ deploy-to-ghcr-io:
+ name: Publish to GitHub Container Registry
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ packages: write
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v6
+
+ - name: Log in to the Container registry
+ uses: docker/login-action@v4
+ with:
+ registry: ghcr.io
+ username: ${{ github.actor }}
+ password: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Prepare and push Docker plugin
+ run: |
+ export NAME="ghcr.io/${{ github.repository }}"
+ export VERSIONS="latest ${GITHUB_REF/refs\/tags\//}"
+ ./package.sh
+
deploy-to-docker-hub:
name: Publish to Docker Hub
runs-on: ubuntu-latest
--
Gitblit v1.10.0