Skip to content

interceptor: don't override Host header #1

interceptor: don't override Host header

interceptor: don't override Host header #1

Workflow file for this run

name: Publish canary image to GitHub Container Registry
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
container: ghcr.io/kedacore/build-tools:1.19.5
steps:
- uses: actions/checkout@v3
- name: Register workspace path
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Login to GHCR
uses: docker/login-action@v2
with:
# Username used to log in to a Docker registry. If not set then no login will occur
username: ${{ github.repository_owner }}
# Password or personal access token used to log in to a Docker registry. If not set then no login will occur
password: ${{ secrets.GITHUB_TOKEN }}
# Server address of Docker registry. If not set then will default to Docker Hub
registry: ghcr.io
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Publish on GitHub Container Registry
run: make publish-multiarch
env:
VERSION: canary