Skip to content

Commit

Permalink
feat(ci): add debug release action
Browse files Browse the repository at this point in the history
Release-As: 0.5.5
  • Loading branch information
sentriz committed Nov 8, 2023
1 parent a4a358d commit f04d4c4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/debug-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Debug Release
on:
workflow_dispatch:
inputs:
tag:
description: "Tag of image to build"
required: true
jobs:
build-release:
name: Build, tag, and publish Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
install: true
version: latest
driver-opts: image=moby/buildkit:master
- name: Login into DockerHub
run: echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
- name: Login into GitHub Container Registry
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build and Push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: |
ghcr.io/${{ github.repository }}:${{ github.event.inputs.tag }}
${{ github.repository }}:${{ github.event.inputs.tag }}

0 comments on commit f04d4c4

Please sign in to comment.