Skip to content

HTTP Basic auth support (#6) #10

HTTP Basic auth support (#6)

HTTP Basic auth support (#6) #10

Workflow file for this run

# name: Release
on:
push:
tags:
- 'v*'
jobs:
dummy:
name: Dummy
runs-on: ubuntu-latest
steps:
- name: Dummy
run: exit 0
# docker-image:
# name: Publish Docker Image
# runs-on: ubuntu-latest
# steps:
# - name: Checkout sources
# uses: actions/checkout@v2
# - name: Get tag version
# run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
# - name: Print version
# run: |
# echo $RELEASE_VERSION
# echo ${{ env.RELEASE_VERSION }}
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Extract metadata (tags, labels) for Docker
# id: meta
# uses: docker/metadata-action@v5
# with:
# images: flashbots/builder-tools
# tags: |
# type=sha
# type=pep440,pattern={{version}}
# type=pep440,pattern={{major}}.{{minor}}
# type=raw,value=latest,enable=${{ !contains(env.RELEASE_VERSION, '-') }}
# - name: Login to DockerHub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# - name: Go Build Cache for Docker
# uses: actions/cache@v3
# with:
# path: go-build-cache
# key: ${{ runner.os }}-go-build-cache-${{ hashFiles('**/go.sum') }}
# - name: inject go-build-cache into docker
# uses: reproducible-containers/[email protected]
# with:
# cache-source: go-build-cache
# - name: Build and push
# uses: docker/build-push-action@v5
# with:
# context: .
# build-args: |
# VERSION=${{ env.RELEASE_VERSION }}
# push: true
# tags: ${{ steps.meta.outputs.tags }}
# labels: ${{ steps.meta.outputs.labels }}
# platforms: linux/amd64,linux/arm64
# cache-from: type=gha
# cache-to: type=gha,mode=max
# github-release:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout sources
# uses: actions/checkout@v2
# - name: Create release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
# with:
# tag_name: ${{ github.ref }}
# release_name: ${{ github.ref }}
# draft: false
# prerelease: false