mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
1fddc53f53
* ci: build alpha action
* ci: use self-hosted runner
* ci: build faster
* ci: multicore dash build
* chore: copy build, dockerize and push
* chore: dockerize build
* chore: remove unnecessary cachedir and checkout steps
* chore: disable qemu
* chore: remove buildx steps now included in AMI
* chore: move binaries in to place for second stage copy
* fix: runner using incorrect build driver
* chore: debug builder info
* chore: more detailed debug
* chore: install qemu and buildx in actions
* fix: indentation
* fix: remove debug code
* feat: multi-arch cross-compiling dockerfile
* chore: remove unnecessary docker layers
* chore: add debug output
* chore: dump context
* fix: use event inputs tag for docker_meta
* chore: dump context again
* fix: context reference syntax
* feat: attempt to use gitian builder
* chore: ff changes from other branches
* chore: disable macOS build
* Revert "chore: ff changes from other branches"
This reverts commit daece1c505
.
* chore: restore GHA changes to fix incorrect merge
* chore: remove duplicate code
* chore: bump buildx version to latest
* chore: try to build without signing
* chore: setup tmate to find build
* chore: run tmate on failure
* fix: invalid path to binaries on copy
* chore: remove unnecessary GPG steps
* chore: replace strophy with dashpay
* fix: gha cache not providing speedup
* Update .github/workflows/release_alpha.yml
Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
58 lines
1.9 KiB
YAML
58 lines
1.9 KiB
YAML
name: Release to Docker Hub
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
release:
|
|
name: Release to Docker Hub
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Docker meta
|
|
id: docker_meta
|
|
uses: crazy-max/ghaction-docker-meta@v2
|
|
with:
|
|
images: dashpay/dashd
|
|
tags: |
|
|
type=match,pattern=v(\d+.\d+.\d+.\d+),group=1,enable=${{ !contains(github.event.release.tag_name, '-rc') }}
|
|
type=match,pattern=v(\d+.\d+.\d+),group=1,enable=${{ !contains(github.event.release.tag_name, '-rc') }}
|
|
type=match,pattern=v(\d+.\d+),group=1,enable=${{ !contains(github.event.release.tag_name, '-rc') }}
|
|
type=raw,value=latest,enable=${{ !contains(github.event.release.tag_name, '-rc') }}
|
|
type=match,pattern=v(.*),group=1,latest=false,enable=${{ contains(github.event.release.tag_name, '-rc') }}
|
|
type=raw,value=latest-dev,enable=${{ contains(github.event.release.tag_name, '-rc') }}
|
|
flavor: |
|
|
latest=false
|
|
|
|
- name: Build and push
|
|
id: docker_build
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: ./docker
|
|
file: ./contrib/containers/deploy/Dockerfile.GitHubActions.Release
|
|
push: true
|
|
tags: ${{ steps.docker_meta.outputs.tags }}
|
|
labels: ${{ steps.docker_meta.outputs.labels }}
|
|
build-args: TAG=${{ steps.docker_meta.outputs.version }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
- name: Image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|